Skip to content

Commit 8787ac5

Browse files
committed
address feedback
1 parent 14a7d62 commit 8787ac5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/appsec.yml

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
- run: yarn install
3030
- uses: ./.github/actions/node/oldest
3131
- run: yarn test:appsec:ci
32+
- uses: ./.github/actions/node/20
33+
- run: yarn test:appsec:ci
3234
- uses: ./.github/actions/node/latest
3335
- run: yarn test:appsec:ci
3436
- uses: codecov/codecov-action@v2

.github/workflows/plugins.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- id: pkg
5353
run: |
5454
content=`cat ./package.json | tr '\n' ' '`
55-
echo "::set-output name=json::$content"
55+
echo "json=$content" >> $GITHUB_OUTPUT
5656
- id: extract
5757
run: |
5858
version="${{fromJson(steps.pkg.outputs.json).version}}"
@@ -91,7 +91,7 @@ jobs:
9191
- id: pkg
9292
run: |
9393
content=`cat ./package.json | tr '\n' ' '`
94-
echo "::set-output name=json::$content"
94+
echo "json=$content" >> $GITHUB_OUTPUT
9595
- id: extract
9696
run: |
9797
version="${{fromJson(steps.pkg.outputs.json).version}}"
@@ -133,7 +133,7 @@ jobs:
133133
- id: pkg
134134
run: |
135135
content=`cat ./package.json | tr '\n' ' '`
136-
echo "::set-output name=json::$content"
136+
echo "json=$content" >> $GITHUB_OUTPUT
137137
- id: extract
138138
run: |
139139
version="${{fromJson(steps.pkg.outputs.json).version}}"

.github/workflows/project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# setting fail-fast to false in an attempt to prevent this from happening
1919
fail-fast: false
2020
matrix:
21-
version: [18, latest]
21+
version: [18, 20, latest]
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)