Skip to content

Commit 6d76060

Browse files
authored
fix(breaking-change): update for nodes 18 and 20 (#32)
1 parent cfa24e7 commit 6d76060

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/daily.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
node: [14]
13+
node-version: [18]
1414
os: [ubuntu-latest]
1515

1616
steps:
@@ -29,6 +29,6 @@ jobs:
2929
env:
3030
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
3131
SLACK_TITLE: 'Node version'
32-
SLACK_MESSAGE: ${{ matrix.node }}
32+
SLACK_MESSAGE: ${{ matrix.node-version }}
3333
SLACK_COLOR: ${{ job.status == 'success' && 'good' || job.status == 'cancelled' && '#808080' || 'danger' }}
3434

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
node-version: [14.x, 16.x]
17+
node-version: [18.x, 20.x]
1818
os: [ubuntu-latest, windows-latest]
1919
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2020

.github/workflows/on-push-publish-to-npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-node@v1
1515
with:
16-
node-version: 16
16+
node-version: 18
1717
- run: npm install
1818
- run: npm test
1919
- uses: JS-DevTools/npm-publish@v1
2020
with:
21-
token: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
21+
token: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
git config user.email github-actions@github.com
2323
- uses: actions/setup-node@v1
2424
with:
25-
node-version: 16
25+
node-version: 18
2626
- run: |
2727
npm install
2828
npm test

0 commit comments

Comments
 (0)