chore(deps): 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] <support@github.com>
dependabot[bot] committed
Jan 22, 2024 at 21:57 UTC
12ed20a7a69bfef3baae27b93fd691b28c491b4b
3 files changed
+4
-4
.github/workflows/build.yml
+2
-2
@@ -63,7 +63,7 @@ jobs:
63
- run: chmod +x cmd/ipfs/ipfs
64
- run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
65
id: npm-cache-dir
66
- - uses: actions/cache@v3
66
+ - uses: actions/cache@v4
67
with:
68
path: ${{ steps.npm-cache-dir.outputs.dir }}
69
key: ${{ runner.os }}-${{ github.job }}-helia-${{ hashFiles('**/package-lock.json') }}
@@ -123,7 +123,7 @@ jobs:
123
- run: |
124
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
125
id: npm-cache-dir
126
- - uses: actions/cache@v3
126
+ - uses: actions/cache@v4
127
with:
128
path: ${{ steps.npm-cache-dir.outputs.dir }}
129
key: ${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/package-lock.json') }}
.github/workflows/docker-image.yml
+1
-1
@@ -46,7 +46,7 @@ jobs:
46
uses: docker/setup-buildx-action@v3
47
48
- name: Cache Docker layers
49
- uses: actions/cache@v3
49
+ uses: actions/cache@v4
50
with:
51
path: /tmp/.buildx-cache
52
key: ${{ runner.os }}-buildx-${{ github.sha }}
.github/workflows/sharness.yml
+1
-1
@@ -32,7 +32,7 @@ jobs:
32
path: kubo
33
- name: Install missing tools
34
run: sudo apt update && sudo apt install -y socat net-tools fish libxml2-utils
35
- - uses: actions/cache@v3
35
+ - uses: actions/cache@v4
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') }}