Skip to content

Commit 255f315

Browse files
committed
What happens on ubuntu-24.04?
Actions have been issuing annoying warnings about ubuntu-24.04 becoming the default for ubuntu-latest for some definition of "soon". Let's see if we care.
1 parent d502ec9 commit 255f315

11 files changed

+13
-13
lines changed

.github/workflows/android.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010
jobs:
1111
test:
1212
name: "Test ${{ matrix.name }}"
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
permissions:
1515
contents: read
1616
strategy:

.github/workflows/cifuzz.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ concurrency:
99

1010
jobs:
1111
Fuzzing:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Build Fuzzers
1515
id: build

.github/workflows/cmake_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
shell: bash
1414
strategy:
1515
matrix:
16-
os: [windows-latest, macos-latest, ubuntu-latest]
16+
os: [windows-latest, macos-latest, ubuntu-24.04]
1717
runs-on: ${{ matrix.os }}
1818
continue-on-error: false
1919
name: ${{ matrix.os }}

.github/workflows/coverity.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
scan:
1515
name: "Scan"
16-
runs-on: "ubuntu-latest"
16+
runs-on: "ubuntu-24.04"
1717
if: github.repository_owner == 'libressl' # Prevent running on forks
1818
permissions:
1919
contents: read

.github/workflows/emscripten.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
jobs:
1515
test:
1616
name: "Emscripten"
17-
runs-on: "ubuntu-latest"
17+
runs-on: "ubuntu-24.04"
1818
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
1919
permissions:
2020
contents: read
@@ -42,7 +42,7 @@ jobs:
4242
# Test ASAN with and without ASM enabled.
4343
test-asan:
4444
name: "ASAN (no-asm)"
45-
runs-on: "ubuntu-latest"
45+
runs-on: "ubuntu-24.04"
4646
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
4747
permissions:
4848
contents: read

.github/workflows/fedora-rawhide.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
cc: [ gcc, clang ]
2020
name: ${{ matrix.cc }}
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-24.04
2222
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
2323
container:
2424
image: fedora:rawhide

.github/workflows/freebsd.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
autoconf:
1818
name: "autoconf"
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-24.04
2020
if: github.repository_owner == 'libressl' || github.event_name != 'schedule'
2121
permissions:
2222
contents: read
@@ -43,7 +43,7 @@ jobs:
4343
4444
cmake:
4545
name: "cmake"
46-
runs-on: ubuntu-latest
46+
runs-on: ubuntu-24.04
4747
if: github.repository_owner == 'libressl' || github.event_name != 'schedule'
4848
permissions:
4949
contents: read

.github/workflows/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# Test ASAN with and without ASM enabled.
4949
test-asan:
5050
name: "ASAN (${{ matrix.asm == 'ON' && 'asm' || 'no-asm' }})"
51-
runs-on: "ubuntu-latest"
51+
runs-on: "ubuntu-24.04"
5252
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
5353
permissions:
5454
contents: read

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
release:
1717
name: "Release"
18-
runs-on: "ubuntu-latest"
18+
runs-on: "ubuntu-24.04"
1919
outputs:
2020
upload_url: "${{ steps.create_release.outputs.upload_url }}"
2121
steps:

.github/workflows/rust-openssl.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
test:
1515
name: "Test"
16-
runs-on: "ubuntu-latest"
16+
runs-on: "ubuntu-24.04"
1717
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
1818
permissions:
1919
contents: read

.github/workflows/solaris.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
test:
1515
name: "Solaris"
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
1818
permissions:
1919
contents: read

0 commit comments

Comments
 (0)