@@ -19,10 +19,10 @@ jobs:
1919 node-version : [14.x, 16.x, 18.x, 20.x]
2020 # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121 steps :
22- - uses : actions/checkout@v3
22+ - uses : actions/checkout@v4
2323 with :
2424 ref : ${{ inputs.ref }}
25- - uses : actions/cache@v3
25+ - uses : actions/cache@v4
2626 with :
2727 path : ~/.npm # this is cache where npm installs from before going out to the network
2828 key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -37,10 +37,10 @@ jobs:
3737 name : Browser Test Specs
3838 runs-on : ubuntu-latest
3939 steps :
40- - uses : actions/checkout@v3
40+ - uses : actions/checkout@v4
4141 with :
4242 ref : ${{ inputs.ref }}
43- - uses : actions/cache@v3
43+ - uses : actions/cache@v4
4444 with :
4545 path : ~/.npm # this is cache where npm installs from before going out to the network
4646 key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -55,10 +55,10 @@ jobs:
5555 name : Code Lint
5656 runs-on : ubuntu-latest
5757 steps :
58- - uses : actions/checkout@v3
58+ - uses : actions/checkout@v4
5959 with :
6060 ref : ${{ inputs.ref }}
61- - uses : actions/cache@v3
61+ - uses : actions/cache@v4
6262 with :
6363 path : ~/.npm # this is cache where npm installs from before going out to the network
6464 key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -69,10 +69,10 @@ jobs:
6969 name : Types
7070 runs-on : ubuntu-latest
7171 steps :
72- - uses : actions/checkout@v3
72+ - uses : actions/checkout@v4
7373 with :
7474 ref : ${{ inputs.ref }}
75- - uses : actions/cache@v3
75+ - uses : actions/cache@v4
7676 with :
7777 path : ~/.npm # this is cache where npm installs from before going out to the network
7878 key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
0 commit comments