We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e634d7a commit 5748c69Copy full SHA for 5748c69
1 file changed
.github/workflows/push_deploy.yml
@@ -12,7 +12,7 @@ jobs:
12
node-version: 16.14.2
13
- name: Cache node_modules
14
id: cache-modules
15
- uses: actions/cache@v1
+ uses: actions/cache@v3
16
with:
17
path: node_modules
18
key: ${{ runner.OS }}-build-${{ hashFiles('package.json') }}
@@ -26,7 +26,7 @@ jobs:
26
- name: Check tests pass
27
run: yarn test
28
- name: Upload lib build artifact
29
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
30
31
name: build-lib
32
path: dist
@@ -47,7 +47,7 @@ jobs:
47
48
key: ${{ runner.OS }}-deploy-${{ hashFiles('package.json') }}
49
- name: Download build-lib
50
- uses: actions/download-artifact@v2
+ uses: actions/download-artifact@v4
51
52
53
0 commit comments