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 77 env :
88 GH_PR_NUM : ${{ github.event.number }}
99 steps :
10- - uses : actions/checkout@v2
10+ - uses : actions/checkout@v4
1111 - run : |
1212 if [[ ! -z "${GH_PR_NUM}" ]]; then
1313 echo "Checking out PR"
1414 git fetch origin pull/$GH_PR_NUM/head:tmp
1515 git checkout tmp
1616 fi
17- - uses : actions/cache@v2
17+ - uses : actions/cache@v4
1818 id : setup-cache
1919 name : Cache setup
2020 with :
@@ -33,17 +33,17 @@ jobs:
3333 - uses : actions/setup-node@v1
3434 with :
3535 node-version : ' 20'
36- - uses : actions/cache@v2
36+ - uses : actions/cache@v4
3737 id : yarn-cache
3838 name : Cache npm deps
3939 with :
4040 path : |
41- node_modules
42- **/node_modules
41+ node_modules
42+ **/node_modules
4343 key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
4444 - run : yarn install --frozen-lockfile
4545 if : steps.yarn-cache.outputs.cache-hit != 'true'
46- - uses : actions/cache@v2
46+ - uses : actions/cache@v4
4747 id : dist
4848 name : Cache dist
4949 with :
You can’t perform that action at this time.
0 commit comments