@@ -16,10 +16,10 @@ jobs:
1616 Test :
1717 runs-on : ubuntu-latest
1818 steps :
19- - uses : actions/checkout@v2
20- - uses : actions/setup-node@v2-beta
19+ - uses : actions/checkout@v4
20+ - uses : actions/setup-node@v4
2121 with :
22- node-version : ' 12 '
22+ node-version : ' 18 '
2323 - name : Install
2424 run : npm i
2525 - name : Run tests
@@ -33,17 +33,17 @@ jobs:
3333 continue-on-error : true
3434 steps :
3535 - run : docker pull pactfoundation/pact-cli:latest
36- - uses : actions/checkout@v2
36+ - uses : actions/checkout@v4
3737 - name : Check if verification exists
3838 # Raises an error and does not continue if the verification already exists
3939 # Because continue-on-error is set to true, this will not fail the overall build however
4040 run : " ! make check_if_successfull_verification_exists"
41- - uses : actions/checkout@v2
41+ - uses : actions/checkout@v4
4242 with :
4343 repository : pactflow/example-provider
44- - uses : actions/setup-node@v2-beta
44+ - uses : actions/setup-node@v4
4545 with :
46- node-version : ' 12 '
46+ node-version : ' 18 '
4747 - name : Install
4848 run : npm i
4949 - name : Verify
6262 runs-on : ubuntu-latest
6363 needs : Verify
6464 steps :
65- - uses : actions/checkout@v2
65+ - uses : actions/checkout@v4
6666 - run : docker pull pactfoundation/pact-cli:latest
6767 - name : Can I deploy?
6868 run : make can_i_deploy
7373 runs-on : ubuntu-latest
7474 needs : Can-I-Deploy
7575 steps :
76- - uses : actions/checkout@v2
76+ - uses : actions/checkout@v4
7777 - run : docker pull pactfoundation/pact-cli:latest
7878 - name : Deploy
7979 run : GIT_BRANCH=${GITHUB_REF:11} make deploy
0 commit comments