File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -38,16 +38,16 @@ jobs:
3838 runs-on : ubuntu-latest
3939 steps :
4040 - name : Checkout
41- uses : actions/checkout@v2
41+ uses : actions/checkout@v4
4242
4343 - name : Setup Node.js
44- uses : actions/setup-node@v1
44+ uses : actions/setup-node@v4
4545 with :
46- node-version : ' 12 '
46+ node-version : ' 20 '
4747
4848 - name : Cache NPM dependencies
4949 id : npm-cache
50- uses : actions/cache@v2
50+ uses : actions/cache@v3
5151 with :
5252 path : ~/.npm
5353 key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -65,16 +65,16 @@ jobs:
6565 runs-on : ubuntu-latest
6666 steps :
6767 - name : Checkout
68- uses : actions/checkout@v2
68+ uses : actions/checkout@v4
6969
7070 - name : Setup Node.js
71- uses : actions/setup-node@v1
71+ uses : actions/setup-node@v4
7272 with :
73- node-version : ' 12 '
73+ node-version : ' 20 '
7474
7575 - name : Cache NPM dependencies
7676 id : npm-cache
77- uses : actions/cache@v2
77+ uses : actions/cache@v3
7878 with :
7979 path : ~/.npm
8080 key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
8989 run : npm run build
9090
9191 - name : Upload artifacts
92- uses : actions/upload-artifact@v2
92+ uses : actions/upload-artifact@v3
9393 with :
9494 name : package
9595 path : |
@@ -101,15 +101,15 @@ jobs:
101101 runs-on : ubuntu-latest
102102 steps :
103103 - name : Checkout
104- uses : actions/checkout@v2
104+ uses : actions/checkout@v4
105105
106106 - name : Setup Node.js
107- uses : actions/setup-node@v1
107+ uses : actions/setup-node@v4
108108 with :
109- node-version : ' 12 '
109+ node-version : ' 20 '
110110
111111 - name : Download artifacts
112- uses : actions/download-artifact@v2
112+ uses : actions/download-artifact@v3
113113 with :
114114 name : package
115115 path : ~/build
You can’t perform that action at this time.
0 commit comments