Skip to content

Commit a17a155

Browse files
[Github][libc++] Prefer ubuntu-24.04 over ubuntu-latest (#129949)
This patch replaces all instances of ubuntu-latest with ubuntu-24.04 based on the guidelines in the LLVM CI best practices doc (https://llvm.org/docs/CIBestPractices.html).
1 parent 1a09ada commit a17a155

3 files changed

+4
-4
lines changed

.github/workflows/libcxx-build-containers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626

2727
jobs:
2828
build-and-push:
29-
runs-on: ubuntu-latest
29+
runs-on: ubuntu-24.04
3030
if: github.repository_owner == 'llvm'
3131
permissions:
3232
packages: write

.github/workflows/libcxx-check-generated-files.yml

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

1010
jobs:
1111
check_generated_files:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Fetch LLVM sources
1515
uses: actions/checkout@v4

.github/workflows/libcxx-restart-preempted-jobs.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
statuses: read
2727
checks: write
2828
actions: write
29-
runs-on: ubuntu-latest
29+
runs-on: ubuntu-24.04
3030
steps:
3131
- name: "Restart Job"
3232
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1
@@ -161,7 +161,7 @@ jobs:
161161
statuses: read
162162
checks: write
163163
actions: write
164-
runs-on: ubuntu-latest
164+
runs-on: ubuntu-24.04
165165
steps:
166166
- name: "Restart Job (test)"
167167
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1

0 commit comments

Comments
 (0)