Skip to content

Commit 145cd42

Browse files
committed
fix workflow
1 parent 384810e commit 145cd42

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/Linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node: ['10', '12', '14', '16', '18', '20']
18+
node: ['20', '22', '23', '24']
1919

2020
steps:
2121
- uses: actions/checkout@v2
22-
- name: Use Node.js ${{ matrix.node-version }}
22+
- name: Use Node.js ${{ matrix.node }}
2323
uses: actions/setup-node@v3
2424
with:
25-
node-version: ${{ matrix.node-version }}
25+
node-version: ${{ matrix.node }}
2626
- run: npm ci
2727
- name: Install MonetDB
2828
run: |

.github/workflows/macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node: ['10', '12', '14', '16', '18', '20']
18+
node: ['20', '22', '23', '24']
1919
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2020

2121
steps:
2222
- uses: actions/checkout@v2
23-
- name: Use Node.js ${{ matrix.node-version }}
23+
- name: Use Node.js ${{ matrix.node }}
2424
uses: actions/setup-node@v2
2525
with:
26-
node-version: ${{ matrix.node-version }}
26+
node-version: ${{ matrix.node }}
2727
- run: npm ci
2828
- name: Install MonetDB
2929
run: |

0 commit comments

Comments
 (0)