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:
1919 steps :
2020 - uses : actions/checkout@v2
2121 - name : Use Node.js ${{ env.node-version }}
22- uses : actions/setup-node@v2
22+ uses : actions/setup-node@v4
2323 with :
2424 node-version : ${{ env.node-version }}
2525
2626 - name : Variable-Yarn cache directory path
2727 id : yarn-cache-dir-path
2828 run : echo "::set-output name=dir::$(yarn cache dir)"
2929 - name : Cache Yarn cache directory
30- uses : actions/cache@v2
30+ uses : actions/cache@v4
3131 with :
3232 path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
3333 key : ${{ runner.os }}-node-${{ env.node-version }}-yarn-${{ hashFiles('yarn.lock') }}
3838 - name : Build website
3939 run : yarn build
4040 - name : " Upload website build artifact"
41- uses : actions/upload-artifact@v2
41+ uses : actions/upload-artifact@v4
4242 with :
4343 name : ${{ env.website-package-name }}
4444 path : ./build/
5757
5858 steps :
5959 # necessary for JamesIves/github-pages-deploy-action
60- - uses : actions/checkout@v2
60+ - uses : actions/checkout@v4
6161
62- - uses : actions/download-artifact@v2
62+ - uses : actions/download-artifact@v4
6363 with :
6464 name : ${{ env.website-package-name }}
6565 path : ${{ env.package-path }}
You can’t perform that action at this time.
0 commit comments