Skip to content

Commit 2794a7b

Browse files
committed
github: Build the pinned Ubuntu jobs on 22.04
This makes the prebuilt toolchains require 22.04. The GitHub Actions Ubuntu 20.04 images are deprecated and are being removed soon, see actions/runner-images#11101.
1 parent 6144b2e commit 2794a7b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
linux:
6969
if: (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
7070
needs: [prepare]
71-
runs-on: ubuntu-20.04
71+
runs-on: ubuntu-22.04
7272
steps:
7373
- uses: actions/checkout@v4
7474
- name: Build
@@ -104,7 +104,7 @@ jobs:
104104
linux-cross-aarch64:
105105
if: (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
106106
needs: [linux, prepare]
107-
runs-on: ubuntu-20.04
107+
runs-on: ubuntu-22.04
108108
steps:
109109
- uses: actions/checkout@v4
110110
- name: Build

.github/workflows/msvcrt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Build a new toolchain with a different CRT choice.
4848
linux-msvcrt:
4949
needs: [prepare]
50-
runs-on: ubuntu-20.04
50+
runs-on: ubuntu-22.04
5151
steps:
5252
- uses: actions/checkout@v4
5353
with:

0 commit comments

Comments
 (0)