Skip to content

Commit 5e10132

Browse files
committed
chore: increase min node version to 18
1 parent 619c8d8 commit 5e10132

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/blueprint-export-diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fetch-depth: 0
1010
- uses: actions/setup-node@v2
1111
with:
12-
node-version: '16'
12+
node-version: '18'
1313
- name: Check for changes
1414
id: check-for-export-changes
1515
run: echo ::set-output name=check::$(git diff --name-only origin/main --exit-code -- acm-blueprint.zip)

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node: ['16', '18' ]
8+
node: [ '18', '20' ]
99
steps:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-node@v2

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v2
88
- uses: actions/setup-node@v2
99
with:
10-
node-version: '16'
10+
node-version: '18'
1111
- run: npm install
1212
- run: npm run format:check
1313
continue-on-error: FALSE

0 commit comments

Comments
 (0)