File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 38
38
matrix :
39
39
node-version : [14.x]
40
40
steps :
41
- - uses : actions/checkout@v2
41
+ - uses : actions/checkout@v4
42
42
- name : Use Node.js ${{ matrix.node-version }}
43
- uses : actions/setup-node@v2
43
+ uses : actions/setup-node@v4
44
44
with :
45
45
node-version : ${{ matrix.node-version }}
46
46
49
49
run : echo "::set-output name=dir::$(yarn cache dir)"
50
50
51
51
- name : Use Yarn cache
52
- uses : actions/cache@v2
52
+ uses : actions/cache@v4
53
53
id : yarn-cache
54
54
with :
55
55
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
61
61
- name : Build (webpack)
62
62
run : CI=false; yarn build
63
63
64
- - uses : actions/upload-artifact@v2
64
+ - uses : actions/upload-artifact@v4
65
65
with :
66
66
name : nextjs-build
67
67
path : ./build/
73
73
runs-on : ubuntu-latest
74
74
if : github.event_name == 'push'
75
75
steps :
76
- - uses : actions/checkout@v2
76
+ - uses : actions/checkout@v4
77
77
78
- - uses : actions/download-artifact@v2
78
+ - uses : actions/download-artifact@v4
79
79
with :
80
80
name : nextjs-build
81
81
path : build/
You can’t perform that action at this time.
0 commit comments