@@ -13,17 +13,17 @@ jobs:
1313 contents : write
1414 strategy :
1515 matrix :
16- node-version : [14 .x, 16 .x, 18 .x]
16+ node-version : [16 .x, 18 .x, 20 .x]
1717 steps :
1818 - run : echo "🎉 The job was triggered by a ${{ github.event_name }} event."
19- - uses : styfle/cancel-workflow-action@0.11 .0
19+ - uses : styfle/cancel-workflow-action@0.12 .0
2020 with :
2121 workflow_id : nodejs.yml
2222 access_token : ${{ secrets.GITHUB_TOKEN }}
2323 - uses : FranzDiebold/github-env-vars-action@v2
24- - uses : actions/checkout@v3
24+ - uses : actions/checkout@v4
2525 - name : Use Node.js ${{ matrix.node-version }}
26- uses : actions/setup-node@v3
26+ uses : actions/setup-node@v4
2727 with :
2828 node-version : ${{ matrix.node-version }}
2929 - name : Install node_modules
@@ -32,16 +32,16 @@ jobs:
3232 run : yarn test
3333 env :
3434 CI : true
35- - name : Testing with previous mongoose versions 6
36- run : yarn test-prev-vers-6
35+ - name : Testing with previous mongoose versions 7
36+ run : yarn test-prev-vers-7
3737 env :
3838 CI : true
39- - name : Testing with previous mongoose versions 5
40- run : yarn test-prev-vers-5
39+ - name : Testing with previous mongoose versions 6
40+ run : yarn test-prev-vers-6
4141 env :
4242 CI : true
4343 - name : Send codecov.io stats
44- if : matrix.node-version == '14 .x'
44+ if : matrix.node-version == '18 .x'
4545 run : bash <(curl -s https://codecov.io/bash) || echo ''
4646
4747 publish :
@@ -52,11 +52,11 @@ jobs:
5252 packages : write
5353 contents : write
5454 steps :
55- - uses : actions/checkout@v3
56- - name : Use Node.js 14
57- uses : actions/setup-node@v3
55+ - uses : actions/checkout@v4
56+ - name : Use Node.js 18
57+ uses : actions/setup-node@v4
5858 with :
59- node-version : 14 .x
59+ node-version : 18 .x
6060 - name : Install node_modules
6161 run : yarn install
6262 - name : Build
0 commit comments