Skip to content

Commit 07083ff

Browse files
authored
Merge pull request #463 from IBM/ci-maintenance
ci: GitHub Actions Maintenance
2 parents d52c262 + 065166e commit 07083ff

2 files changed

Lines changed: 12 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
node-version:
10-
- 18.x
10+
- 20.x
1111
os:
1212
- windows-latest
1313
- ubuntu-latest
@@ -16,9 +16,12 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
22+
- name: Install dependencies
23+
if: ${{ startsWith(matrix.os, 'ubuntu') }}
24+
run: sudo apt install -y unixodbc-dev
2225
- name: Install dependencies
2326
if: ${{ startsWith(matrix.os, 'macos') }}
2427
run: brew install unixodbc

.github/workflows/create-release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,22 @@ jobs:
99
strategy:
1010
matrix:
1111
node-version:
12-
- 18.x
12+
- 20.x
1313
os:
1414
- windows-2022
1515
- ubuntu-22.04
16-
# arm64
17-
- macos-14
18-
# x86_64
19-
- macos-13
16+
- macos-15
17+
- macos-15-intel
2018
runs-on: ${{ matrix.os }}
2119
steps:
2220
- uses: actions/checkout@v2
2321
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2523
with:
2624
node-version: ${{ matrix.node-version }}
25+
- name: Install dependencies
26+
if: ${{ startsWith(matrix.os, 'ubuntu') }}
27+
run: sudo apt install -y unixodbc-dev
2728
- name: Install Build Dependencies
2829
if: ${{ startsWith(matrix.os, 'macos') }}
2930
run: brew install unixodbc

0 commit comments

Comments
 (0)