chore(deps): bump actions/cache from 4 to 5 (#11108)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] committed
Dec 16, 2025 at 22:56 UTC
117d8d67e53ed8b96b111f6182e63bdd7c8f457a
2 files changed
+3
-3
.github/workflows/interop.yml
+2
-2
@@ -59,7 +59,7 @@ jobs:
59
- run: chmod +x cmd/ipfs/ipfs
60
- run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
61
id: npm-cache-dir
62
- - uses: actions/cache@v4
62
+ - uses: actions/cache@v5
63
with:
64
path: ${{ steps.npm-cache-dir.outputs.dir }}
65
key: ${{ runner.os }}-${{ github.job }}-helia-${{ hashFiles('**/package-lock.json') }}
@@ -99,7 +99,7 @@ jobs:
99
- run: |
100
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
101
id: npm-cache-dir
102
- - uses: actions/cache@v4
102
+ - uses: actions/cache@v5
103
with:
104
path: ${{ steps.npm-cache-dir.outputs.dir }}
105
key: ${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/package-lock.json') }}
.github/workflows/sharness.yml
+1
-1
@@ -32,7 +32,7 @@ jobs:
32
go-version-file: 'kubo/go.mod'
33
- name: Install missing tools
34
run: sudo apt update && sudo apt install -y socat net-tools fish libxml2-utils
35
- - uses: actions/cache@v4
35
+ - uses: actions/cache@v5
36
with:
37
path: test/sharness/lib/dependencies
38
key: ${{ runner.os }}-test-generate-junit-html-${{ hashFiles('test/sharness/lib/test-generate-junit-html.sh') }}