Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What happens on ubuntu-24.04? #1134

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:
jobs:
test:
name: "Test ${{ matrix.name }}"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: read
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cifuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency:

jobs:
Fuzzing:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Build Fuzzers
id: build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
shell: bash
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
os: [windows-latest, macos-latest, ubuntu-24.04]
runs-on: ${{ matrix.os }}
continue-on-error: false
name: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
scan:
name: "Scan"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-24.04"
if: github.repository_owner == 'libressl' # Prevent running on forks
permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
test:
name: "Emscripten"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-24.04"
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
permissions:
contents: read
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
# Test ASAN with and without ASM enabled.
test-asan:
name: "ASAN (no-asm)"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-24.04"
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fedora-rawhide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
cc: [ gcc, clang ]
name: ${{ matrix.cc }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
container:
image: fedora:rawhide
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
jobs:
autoconf:
name: "autoconf"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.repository_owner == 'libressl' || github.event_name != 'schedule'
permissions:
contents: read
Expand All @@ -43,7 +43,7 @@ jobs:

cmake:
name: "cmake"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.repository_owner == 'libressl' || github.event_name != 'schedule'
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# Test ASAN with and without ASM enabled.
test-asan:
name: "ASAN (${{ matrix.asm == 'ON' && 'asm' || 'no-asm' }})"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-24.04"
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:
jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-24.04"
outputs:
upload_url: "${{ steps.create_release.outputs.upload_url }}"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-openssl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
test:
name: "Test"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-24.04"
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/solaris.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
test:
name: "Solaris"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }}
permissions:
contents: read
Expand Down
Loading