Skip to content

Commit cce9fa6

Browse files
Merge branch 'master' into renovate/bootstrap-5.x
2 parents 2da6176 + 480ae7d commit cce9fa6

5 files changed

Lines changed: 27 additions & 5 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [20]
17+
node-version: [22]
1818
os: [ubuntu-22.04, ubuntu-24.04]
1919
runs-on: ${{ matrix.os }}
2020
name: ${{ matrix.os }}-node-${{ matrix.node-version }}

.github/workflows/build-mac.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [20]
17+
node-version: [22]
1818
os: [macos-13, macos-14]
1919
runs-on: ${{ matrix.os }}
2020
name: ${{ matrix.os }}-node-${{ matrix.node-version }}
@@ -34,6 +34,17 @@ jobs:
3434
restore-keys: |
3535
${{ runner.OS }}-node-
3636
${{ runner.OS }}-
37+
38+
# because of https://github.com/actions/runner/issues/2958
39+
- name: macos-13 dependencies fix
40+
if: matrix.os == 'macos-13'
41+
run: |
42+
sudo -H pip install setuptools
43+
- name: macos-14 dependencies fix
44+
if: matrix.os == 'macos-14'
45+
run: |
46+
brew install python-setuptools
47+
3748
- name: Install dependencies
3849
run: npm ci --include=optional
3950

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [20]
17+
node-version: [22]
1818
os: [windows-2019, windows-2022]
1919
runs-on: ${{ matrix.os }}
2020
name: ${{ matrix.os }}-node-${{ matrix.node-version }}

.github/workflows/main.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [20]
17+
node-version: [22]
1818
os: [ubuntu-22.04, ubuntu-24.04, macos-13, macos-14]
1919
runs-on: ${{ matrix.os }}
2020
name: ${{ matrix.os }}-node-${{ matrix.node-version }}
@@ -37,6 +37,17 @@ jobs:
3737
restore-keys: |
3838
${{ runner.OS }}-node-
3939
${{ runner.OS }}-
40+
41+
# because of https://github.com/actions/runner/issues/2958
42+
- name: macos-13 dependencies fix
43+
if: matrix.os == 'macos-13'
44+
run: |
45+
sudo -H pip install setuptools
46+
- name: macos-14 dependencies fix
47+
if: matrix.os == 'macos-14'
48+
run: |
49+
brew install python-setuptools
50+
4051
- name: Install dependencies
4152
run: npm ci --include=optional
4253

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [20]
17+
node-version: [22]
1818
os: [windows-2019, windows-2022]
1919
runs-on: ${{ matrix.os }}
2020
name: ${{ matrix.os }}-node-${{ matrix.node-version }}

0 commit comments

Comments
 (0)