File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 29
29
- run : yarn install
30
30
- uses : ./.github/actions/node/oldest
31
31
- run : yarn test:appsec:ci
32
+ - uses : ./.github/actions/node/20
33
+ - run : yarn test:appsec:ci
32
34
- uses : ./.github/actions/node/latest
33
35
- run : yarn test:appsec:ci
34
36
- uses : codecov/codecov-action@v2
Original file line number Diff line number Diff line change 52
52
- id : pkg
53
53
run : |
54
54
content=`cat ./package.json | tr '\n' ' '`
55
- echo "::set-output name= json:: $content"
55
+ echo "json= $content" >> $GITHUB_OUTPUT
56
56
- id : extract
57
57
run : |
58
58
version="${{fromJson(steps.pkg.outputs.json).version}}"
91
91
- id : pkg
92
92
run : |
93
93
content=`cat ./package.json | tr '\n' ' '`
94
- echo "::set-output name= json:: $content"
94
+ echo "json= $content" >> $GITHUB_OUTPUT
95
95
- id : extract
96
96
run : |
97
97
version="${{fromJson(steps.pkg.outputs.json).version}}"
@@ -133,7 +133,7 @@ jobs:
133
133
- id : pkg
134
134
run : |
135
135
content=`cat ./package.json | tr '\n' ' '`
136
- echo "::set-output name= json:: $content"
136
+ echo "json= $content" >> $GITHUB_OUTPUT
137
137
- id : extract
138
138
run : |
139
139
version="${{fromJson(steps.pkg.outputs.json).version}}"
Original file line number Diff line number Diff line change 18
18
# setting fail-fast to false in an attempt to prevent this from happening
19
19
fail-fast : false
20
20
matrix :
21
- version : [18, latest]
21
+ version : [18, 20, latest]
22
22
runs-on : ubuntu-latest
23
23
steps :
24
24
- uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments