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 @@ -25,15 +25,15 @@ jobs:
2525 name : Node.js v${{ matrix.node }}
2626 runs-on : ubuntu-latest
2727 steps :
28- - uses : actions/checkout@v3
29- - uses : actions/setup-node@v3
28+ - uses : actions/checkout@v4
29+ - uses : actions/setup-node@v4
3030 with :
3131 node-version : ${{ matrix.node }}
3232 - name : Get npm cache directory
3333 id : npm-cache-dir
3434 shell : bash
3535 run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
36- - uses : actions/cache@v3
36+ - uses : actions/cache@v4
3737 id : npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
3838 with :
3939 path : ${{ steps.npm-cache-dir.outputs.dir }}
@@ -54,16 +54,16 @@ jobs:
5454 needs : test
5555 runs-on : ubuntu-latest
5656 steps :
57- - uses : actions/checkout@v3
57+ - uses : actions/checkout@v4
5858 - name : Install Node v18
59- uses : actions/setup-node@v3
59+ uses : actions/setup-node@v4
6060 with :
6161 node-version : 18
6262 - name : Get npm cache directory
6363 id : npm-cache-dir
6464 shell : bash
6565 run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
66- - uses : actions/cache@v3
66+ - uses : actions/cache@v4
6767 id : npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
6868 with :
6969 path : ${{ steps.npm-cache-dir.outputs.dir }}
You can’t perform that action at this time.
0 commit comments