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"
1717 - uses : actions/setup-node@v3
1818 with :
1919 node-version : ' 16'
20- - uses : actions/cache@v2
20+ - uses : actions/cache@v4
2121 id : yarn-cache
2222 name : Cache npm deps
2323 with :
2727 key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
2828 - run : yarn install --frozen-lockfile
2929 if : steps.yarn-cache.outputs.cache-hit != 'true'
30- - uses : actions/cache@v2
30+ - uses : actions/cache@v4
3131 id : dist
3232 name : Cache dist
3333 with :
4343 GH_PR_NUM : ${{ github.event.number }}
4444 needs : build
4545 steps :
46- - uses : actions/checkout@v2
46+ - uses : actions/checkout@v4
4747 - run : |
4848 if [[ ! -z "${GH_PR_NUM}" ]]; then
4949 echo "Checking out PR"
5353 - uses : actions/setup-node@v3
5454 with :
5555 node-version : ' 16'
56- - uses : actions/cache@v2
56+ - uses : actions/cache@v4
5757 id : yarn-cache
5858 name : Cache npm deps
5959 with :
6363 key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
6464 - run : yarn install --frozen-lockfile
6565 if : steps.yarn-cache.outputs.cache-hit != 'true'
66- - uses : actions/cache@v2
66+ - uses : actions/cache@v4
6767 id : lint-cache
6868 name : Load lint cache
6969 with :
7979 GH_PR_NUM : ${{ github.event.number }}
8080 needs : build
8181 steps :
82- - uses : actions/checkout@v2
82+ - uses : actions/checkout@v4
8383 # Yes, we really want to checkout the PR
8484 - run : |
8585 if [[ ! -z "${GH_PR_NUM}" ]]; then
9090 - uses : actions/setup-node@v3
9191 with :
9292 node-version : ' 16'
93- - uses : actions/cache@v2
93+ - uses : actions/cache@v4
9494 id : yarn-cache
9595 name : Cache npm deps
9696 with :
@@ -101,7 +101,7 @@ jobs:
101101 key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
102102 - run : yarn install --frozen-lockfile
103103 if : steps.yarn-cache.outputs.cache-hit != 'true'
104- - uses : actions/cache@v2
104+ - uses : actions/cache@v4
105105 id : dist
106106 name : Cache dist
107107 with :
@@ -120,7 +120,7 @@ jobs:
120120 GH_PR_NUM : ${{ github.event.number }}
121121 needs : build
122122 steps :
123- - uses : actions/checkout@v2
123+ - uses : actions/checkout@v4
124124 # Yes, we really want to checkout the PR
125125 - run : |
126126 if [[ ! -z "${GH_PR_NUM}" ]]; then
@@ -131,7 +131,7 @@ jobs:
131131 - uses : actions/setup-node@v3
132132 with :
133133 node-version : ' 16'
134- - uses : actions/cache@v2
134+ - uses : actions/cache@v4
135135 id : yarn-cache
136136 name : Cache npm deps
137137 with :
@@ -142,7 +142,7 @@ jobs:
142142 key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
143143 - run : yarn install --frozen-lockfile
144144 if : steps.yarn-cache.outputs.cache-hit != 'true'
145- - uses : actions/cache@v2
145+ - uses : actions/cache@v4
146146 id : dist
147147 name : Cache dist
148148 with :
0 commit comments