Skip to content

Commit 7ca84f0

Browse files
committed
Update the GH Action runner images
1 parent 48ec0d4 commit 7ca84f0

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ on:
33
types: [created]
44
jobs:
55
build:
6-
runs-on: ubuntu-18.04
6+
runs-on: ubuntu-22.04
77
strategy:
8-
matrix:
8+
matrix:
99
arch: ['x64']
1010
steps:
1111
- uses: actions/setup-node@master
1212
with:
13-
node-version: "16.x"
13+
node-version: "24.x"
1414
- name: Set up Python 3.8
1515
uses: actions/setup-python@v1
1616
with:
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build Qode binary
2626
run: node ./qode/build.js
2727
env:
28-
TARGET_ARCH: ${{ matrix.arch }}
28+
TARGET_ARCH: ${{ matrix.arch }}
2929

3030
- name: Compress files
3131
uses: a7ul/tar-action@v1.0.2

.github/workflows/mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ on:
33
types: [created]
44
jobs:
55
build:
6-
runs-on: macos-12
6+
runs-on: macos-14
77
strategy:
88
matrix:
99
arch: ['x64', 'arm64']
1010
steps:
1111
- uses: actions/setup-node@master
1212
with:
13-
node-version: '16.x'
13+
node-version: '24.x'
1414
- name: Set up Python 3.8
1515
uses: actions/setup-python@v1
1616
with:

.github/workflows/windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ on:
33
types: [created]
44
jobs:
55
build:
6-
runs-on: windows-2019
6+
runs-on: windows-2022
77
strategy:
8-
matrix:
8+
matrix:
99
arch: ['x64']
1010
steps:
1111
- uses: actions/setup-node@master
1212
with:
13-
node-version: "16.x"
13+
node-version: "24.x"
1414
- name: Set up Python
1515
uses: actions/setup-python@v2
1616
with:
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build Qode binary
2626
run: node ./qode/build.js
2727
env:
28-
TARGET_ARCH: ${{ matrix.arch }}
28+
TARGET_ARCH: ${{ matrix.arch }}
2929
- name: Compress files
3030
uses: a7ul/tar-action@v1.0.2
3131
id: compress

0 commit comments

Comments
 (0)