Skip to content

Commit 824efa8

Browse files
authored
Merge pull request #18704 from Homebrew/ubuntu-run
ci: move to ubuntu latest
2 parents 614678f + 5bf31cb commit 824efa8

File tree

11 files changed

+17
-14
lines changed

11 files changed

+17
-14
lines changed

.github/workflows/autogenerated-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ defaults:
2222

2323
jobs:
2424
autogenerated:
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-latest
2626
if: github.repository == 'Homebrew/brew'
2727
steps:
2828
- name: Set up Homebrew

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defaults:
1515
jobs:
1616
analyze:
1717
name: Analyze
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-latest
1919
permissions:
2020
actions: read
2121
contents: read

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ubuntu:
2222
if: github.repository_owner == 'Homebrew'
2323
name: docker (Ubuntu ${{ matrix.version }})
24-
runs-on: ubuntu-22.04
24+
runs-on: ubuntu-latest
2525
strategy:
2626
fail-fast: false
2727
matrix:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ defaults:
2323

2424
jobs:
2525
docs:
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-latest
2727
steps:
2828
- name: Set up Homebrew
2929
id: set-up-homebrew

.github/workflows/doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ defaults:
2222

2323
jobs:
2424
determine-runners:
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-latest
2626
outputs:
2727
runners: ${{ steps.determine-runners.outputs.runners }}
2828
steps:

.github/workflows/rubydoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ defaults:
2323
jobs:
2424
rubydoc:
2525
if: github.repository == 'Homebrew/brew'
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-latest
2727
env:
2828
BUNDLE_GEMFILE: ${{ github.workspace }}/rubydoc/Gemfile
2929
steps:

.github/workflows/schemas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defaults:
1919
jobs:
2020
spdx:
2121
if: github.repository == 'Homebrew/brew'
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-latest
2323
steps:
2424
- name: Set up Homebrew
2525
id: set-up-homebrew

.github/workflows/spdx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defaults:
1919
jobs:
2020
spdx:
2121
if: github.repository == 'Homebrew/brew'
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-latest
2323
steps:
2424
- name: Set up Homebrew
2525
id: set-up-homebrew

.github/workflows/sponsors-maintainers-man-completions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ defaults:
2727

2828
jobs:
2929
updates:
30-
runs-on: ubuntu-22.04
30+
runs-on: ubuntu-latest
3131
if: github.repository == 'Homebrew/brew'
3232
steps:
3333
- name: Setup Homebrew

.github/workflows/tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ concurrency:
2929
jobs:
3030
syntax:
3131
if: github.repository_owner == 'Homebrew'
32-
runs-on: ubuntu-22.04
32+
runs-on: ubuntu-latest
3333
steps:
3434
- name: Set up Homebrew
3535
id: set-up-homebrew
@@ -193,7 +193,7 @@ jobs:
193193
vendored-gems:
194194
name: vendored gems
195195
needs: syntax
196-
runs-on: ubuntu-22.04
196+
runs-on: ubuntu-latest
197197
steps:
198198
- name: Set up Homebrew
199199
id: set-up-homebrew
@@ -225,8 +225,8 @@ jobs:
225225
strategy:
226226
matrix:
227227
include:
228-
- name: update-test (Ubuntu 22.04)
229-
runs-on: ubuntu-22.04
228+
- name: update-test (Ubuntu)
229+
runs-on: ubuntu-latest
230230
- name: update-test (macOS)
231231
runs-on: macos-15
232232
steps:
@@ -257,6 +257,9 @@ jobs:
257257
- name: tests (generic OS)
258258
test-flags: --generic --coverage
259259
runs-on: ubuntu-latest
260+
- name: tests (Ubuntu 24.04)
261+
test-flags: --coverage
262+
runs-on: ubuntu-24.04
260263
- name: tests (Ubuntu 22.04)
261264
test-flags: --coverage
262265
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)