From 78d52a9ad3b221c5b3d13220f58ff252e2d8b400 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Apr 2026 16:11:41 +0000 Subject: [PATCH] Bump actions/cache from 5.0.2 to 5.0.5 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.2 to 5.0.5. - [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/8b402f58fbc84540c8b491a91e594a4576fec3d7...27d5ce7f107fe9357f9df03efb73ab90386fccae) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/publish-release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 11793585..672f0a3f 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -63,7 +63,7 @@ jobs: mv dist/cloudfuse-gui dist/cloudfuse-gui_${{ runner.os }} - name: Cache compiled GUI - uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4 + uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4 with: enableCrossOsArchive: true path: dist/cloudfuse-gui_${{ runner.os }} @@ -96,7 +96,7 @@ jobs: # Get the WinFSP installer (from cache or download) - name: Get cached WinFSP installer id: restore-winfsp-installer - uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4 with: path: ${{ env.winfsp }} key: ${{ env.winfsp }} @@ -109,13 +109,13 @@ jobs: - name: Cache WinFSP installer if: ${{ ! steps.restore-winfsp-installer.outputs.cache-hit }} - uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4 + uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4 with: path: ${{ env.winfsp }} key: ${{ env.winfsp }} - name: Fetch cached compiled GUI - uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4 with: enableCrossOsArchive: true path: dist/cloudfuse-gui_${{ runner.os }} @@ -141,7 +141,7 @@ jobs: mv windows/Output/cloudfuse-gui.exe windows/Output/cloudfuse-gui_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe - name: Cache windows installer - uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4 + uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4 with: enableCrossOsArchive: true path: windows/Output/cloudfuse-gui_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe @@ -168,14 +168,14 @@ jobs: GITHUB_REF_NAME: ${{ github.ref_name }} - name: Restore Linux compiled GUI - uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4 with: path: dist/cloudfuse-gui_Linux key: Linux-compiled-gui-${{ steps.get_version.outputs.VERSION }}-${{ github.sha }} fail-on-cache-miss: true - name: Restore Windows compiled GUI - uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4 with: enableCrossOsArchive: true path: dist/cloudfuse-gui_Windows @@ -184,7 +184,7 @@ jobs: - name: Restore Windows Installer id: restore-installer - uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4 with: enableCrossOsArchive: true path: windows/Output/cloudfuse-gui_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe