Skip to content

Commit 1610205

Browse files
authored
fix(gha): Updating actions/cache to 4.2.0 (#239)
1 parent 302341a commit 1610205

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: python -m build
2626

2727
- name: Cache dist
28-
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
28+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
2929
with:
3030
path: dist
3131
key: devservices-dist-${{ github.sha }}
@@ -70,7 +70,7 @@ jobs:
7070
cp $BINARY_PATH binaries/${{ matrix.asset_name }}
7171
7272
- name: Cache binary
73-
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
73+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
7474
with:
7575
path: binaries/${{ matrix.asset_name }}
7676
key: ${{ matrix.asset_name }}-${{ github.sha }}
@@ -83,19 +83,19 @@ jobs:
8383
if: github.event_name != 'pull_request'
8484
steps:
8585
- name: Restore dist cache
86-
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
86+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
8787
with:
8888
path: dist
8989
key: devservices-dist-${{ github.sha }}
9090

9191
- name: Restore Linux binary cache
92-
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
92+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
9393
with:
9494
path: binaries/devservices-linux
9595
key: devservices-linux-${{ github.sha }}
9696

9797
- name: Restore macOS binary cache
98-
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
98+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
9999
with:
100100
path: binaries/devservices-darwin
101101
key: devservices-darwin-${{ github.sha }}

0 commit comments

Comments
 (0)