Skip to content

Commit b1b4494

Browse files
chore(deps): update actions/cache action to v4
1 parent 04f4f63 commit b1b4494

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
3232
33-
- uses: actions/cache@v3
33+
- uses: actions/cache@v4
3434
with:
3535
path: ${{ steps.npm-cache.outputs.dir }}
3636
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/scip-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install asdf.
1818
uses: asdf-vm/actions/[email protected]
1919
- name: Cache asdf and asdf-managed tools.
20-
uses: actions/cache@v3.3.1
20+
uses: actions/cache@v4.2.0
2121
id: asdf-cache
2222
with:
2323
path: ${{ env.ASDF_DIR }}
@@ -28,7 +28,7 @@ jobs:
2828
- name: Get npm cache directory
2929
id: npm-cache
3030
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
31-
- uses: actions/cache@v3
31+
- uses: actions/cache@v4
3232
with:
3333
path: ${{ steps.npm-cache.outputs.dir }}
3434
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/scip-snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install asdf.
1717
uses: asdf-vm/actions/[email protected]
1818
- name: Cache asdf and asdf-managed tools.
19-
uses: actions/cache@v3.3.1
19+
uses: actions/cache@v4.2.0
2020
id: asdf-cache
2121
with:
2222
path: ${{ env.ASDF_DIR }}
@@ -27,7 +27,7 @@ jobs:
2727
- name: Get npm cache directory
2828
id: npm-cache
2929
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
30-
- uses: actions/cache@v3
30+
- uses: actions/cache@v4
3131
with:
3232
path: ${{ steps.npm-cache.outputs.dir }}
3333
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/validation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
id: npm-cache
2929
run: |
3030
echo "::set-output name=dir::$(npm config get cache)"
31-
- uses: actions/cache@v3
31+
- uses: actions/cache@v4
3232
with:
3333
path: ${{ steps.npm-cache.outputs.dir }}
3434
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -55,7 +55,7 @@ jobs:
5555
id: npm-cache
5656
run: |
5757
echo "::set-output name=dir::$(npm config get cache)"
58-
- uses: actions/cache@v3
58+
- uses: actions/cache@v4
5959
with:
6060
path: ${{ steps.npm-cache.outputs.dir }}
6161
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -93,7 +93,7 @@ jobs:
9393
id: npm-cache
9494
run: |
9595
echo "::set-output name=dir::$(npm config get cache)"
96-
- uses: actions/cache@v3
96+
- uses: actions/cache@v4
9797
if: runner.os != 'Windows'
9898
with:
9999
path: ${{ steps.npm-cache.outputs.dir }}
@@ -123,7 +123,7 @@ jobs:
123123
id: npm-cache
124124
run: |
125125
echo "::set-output name=dir::$(npm config get cache)"
126-
- uses: actions/cache@v3
126+
- uses: actions/cache@v4
127127
with:
128128
path: ${{ steps.npm-cache.outputs.dir }}
129129
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)