File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ jobs:
19
19
steps :
20
20
- uses : actions/checkout@v2
21
21
- name : Use Node.js ${{ env.node-version }}
22
- uses : actions/setup-node@v2
22
+ uses : actions/setup-node@v4
23
23
with :
24
24
node-version : ${{ env.node-version }}
25
25
26
26
- name : Variable-Yarn cache directory path
27
27
id : yarn-cache-dir-path
28
28
run : echo "::set-output name=dir::$(yarn cache dir)"
29
29
- name : Cache Yarn cache directory
30
- uses : actions/cache@v2
30
+ uses : actions/cache@v4
31
31
with :
32
32
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
33
33
key : ${{ runner.os }}-node-${{ env.node-version }}-yarn-${{ hashFiles('yarn.lock') }}
38
38
- name : Build website
39
39
run : yarn build
40
40
- name : " Upload website build artifact"
41
- uses : actions/upload-artifact@v2
41
+ uses : actions/upload-artifact@v4
42
42
with :
43
43
name : ${{ env.website-package-name }}
44
44
path : ./build/
57
57
58
58
steps :
59
59
# necessary for JamesIves/github-pages-deploy-action
60
- - uses : actions/checkout@v2
60
+ - uses : actions/checkout@v4
61
61
62
- - uses : actions/download-artifact@v2
62
+ - uses : actions/download-artifact@v4
63
63
with :
64
64
name : ${{ env.website-package-name }}
65
65
path : ${{ env.package-path }}
You can’t perform that action at this time.
0 commit comments