Skip to content

Commit ee7a25f

Browse files
committed
[ci] Use Ubuntu 20.04 to build the prebuilt binary for Linux
The Ubuntu 18.04 Actions runner image is no longer supported.
1 parent dc7d1dd commit ee7a25f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ jobs:
5050
- x86
5151
os:
5252
- macos-latest
53-
- ubuntu-18.04
53+
- ubuntu-20.04
5454
- windows-latest
5555
exclude:
5656
- arch: x86
5757
os: macos-latest
5858
- arch: x86
59-
os: ubuntu-18.04
59+
os: ubuntu-20.04
6060
steps:
6161
- uses: actions/checkout@v4
6262
- uses: actions/setup-node@v3
@@ -69,7 +69,7 @@ jobs:
6969
- run: |
7070
npm run prebuild
7171
npm run prebuild-linux-musl-x64
72-
if: matrix.os == 'ubuntu-18.04'
72+
if: matrix.os == 'ubuntu-20.04'
7373
- run: npm run prebuild
7474
if: matrix.os == 'windows-latest'
7575
- uses: actions/upload-artifact@v3
@@ -94,7 +94,7 @@ jobs:
9494
}}-darwin-x64+arm64.tar" -C "prebuilds/macos-latest" .
9595
- run:
9696
tar -cvf "${{ steps.get_version.outputs.version }}-linux-x64.tar" -C
97-
"prebuilds/ubuntu-18.04" linux-x64
97+
"prebuilds/ubuntu-20.04" linux-x64
9898
- run:
9999
tar -cvf "${{ steps.get_version.outputs.version }}-win32-ia32.tar" -C
100100
"prebuilds/windows-latest" win32-ia32

0 commit comments

Comments
 (0)