From 9878f50845f38e64ec657ad6bd1c5549a2a0bcdf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:50:41 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/builds.yaml | 4 ++-- .github/workflows/checkstyle.yaml | 2 +- .github/workflows/codeql.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/builds.yaml b/.github/workflows/builds.yaml index 2403713..809e10d 100644 --- a/.github/workflows/builds.yaml +++ b/.github/workflows/builds.yaml @@ -147,7 +147,7 @@ jobs: - name: Cache Maven dependencies id: maven-dependencies if: ${{ steps.to-skip.outputs.skip == 'false' }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.maven-local-repository.outputs.local-repository }} key: maven-dependencies-${{ hashFiles('pom.xml') }} @@ -163,7 +163,7 @@ jobs: - name: Cache Meson packagecache if: ${{ steps.to-skip.outputs.skip == 'false' }} id: meson-packagecache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: subprojects/packagecache key: meson-packagecache-${{ matrix.image }}-${{ hashFiles('subprojects/hse/subprojects/*.wrap') }} diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml index a5762b3..4d38b9b 100644 --- a/.github/workflows/checkstyle.yaml +++ b/.github/workflows/checkstyle.yaml @@ -32,7 +32,7 @@ jobs: - name: Cache Maven dependencies id: maven-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.maven-local-repository.outputs.local-repository }} key: maven-dependencies-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml index 0c70ec5..0d9424a 100644 --- a/.github/workflows/codeql.yaml +++ b/.github/workflows/codeql.yaml @@ -64,7 +64,7 @@ jobs: path: subprojects/hse - name: Cache Meson packagecache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: subprojects/packagecache key: meson-packagecache-fedora-37-${{ hashFiles('subprojects/hse/subprojects/*.wrap') }}