From af4598f19e9bb75514d892c29b28ed1d585e8884 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 04:27:59 +0000 Subject: [PATCH] Bump actions/cache from 5.0.1 to 5.0.3 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.1 to 5.0.3. - [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/v5.0.1...cdf6c1fa76f9f475f3d7449005a359c84ca0f306) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/code-coverage.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/fuzz-test.yml | 4 ++-- .github/workflows/publish-release.yml | 8 ++++---- .github/workflows/unit-test.yml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index 095673a53..2fb9c54a1 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -69,7 +69,7 @@ jobs: - name: Cache Zig if: runner.os == 'Linux' - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ~/.local/bin key: zig-${{ env.zig }}-${{ runner.arch }}-${{ runner.os }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 2b539a8e7..206bcbe4d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -64,7 +64,7 @@ jobs: - name: Cache Go build cache if: matrix.language == 'go' && runner.os == 'Linux' - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ~/.cache/go-build key: ${{ runner.os }}-codeql-go-build-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/fuzz-test.yml b/.github/workflows/fuzz-test.yml index d1c7060aa..29334bfd0 100644 --- a/.github/workflows/fuzz-test.yml +++ b/.github/workflows/fuzz-test.yml @@ -44,7 +44,7 @@ jobs: check-latest: true - name: Restore fuzz corpus - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: | ~/.cache/go-build/fuzz @@ -98,7 +98,7 @@ jobs: - name: Save fuzz corpus if: always() && github.event_name != 'pull_request' - uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: | ~/.cache/go-build/fuzz diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 0e25dc39c..c673dfdd1 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -56,7 +56,7 @@ jobs: # Get the WinFSP installer (from cache or download) - name: Get cached WinFSP installer id: restore-winfsp-installer - uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ${{ env.winfsp }} key: ${{ env.winfsp }} @@ -71,7 +71,7 @@ jobs: - name: Cache WinFSP installer if: ${{ ! steps.restore-winfsp-installer.outputs.cache-hit }} - uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ${{ env.winfsp }} key: ${{ env.winfsp }} @@ -97,7 +97,7 @@ jobs: mv build/Output/cloudfuse.exe build/Output/cloudfuse_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe - name: Cache windows installer - uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: enableCrossOsArchive: true path: build/Output/cloudfuse_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe @@ -156,7 +156,7 @@ jobs: # Get cached intermediate build products - name: Restore cached Windows installer - uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: enableCrossOsArchive: true path: build/Output/cloudfuse_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 3c6232a26..010a6d5d2 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -88,7 +88,7 @@ jobs: - name: Cache Zig if: runner.os == 'Linux' - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ~/.local/bin key: zig-${{ env.zig }}-${{ runner.arch }}-${{ runner.os }}