Skip to content

Commit ff2cf06

Browse files
authored
Update to ubuntu-latest for all non-backwards compat workflows (#5450)
The runner image `ubuntu-20.04` "will be fully retired by April 1, 2025" https://github.blog/changelog/2025-01-15-github-actions-ubuntu-20-runner-image-brownout-dates-and-other-breaking-changes/ And there are multiple brownout periods in March. This PR is an attempt to avoid unnecessary failures during the brownouts. I updated all the workflows to ubuntu-latest except those that were explicitly related to testing for backwards compatibility, since that will require more judgement on the oldest toolchain we continue to regularly test in CI. --- TYPE: NO_HISTORY DESC: Update to ubuntu-latest for all non-backwards compat workflows
1 parent d8bbb8b commit ff2cf06

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/check-formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
jobs:
2121
build:
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-latest
2323
if: ${{ startsWith(github.ref , 'refs/tags') != true && startsWith(github.ref , 'build-') != true }}
2424
timeout-minutes: 90
2525
name: Check Clang Format

.github/workflows/check-heap-memory-api-violations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
jobs:
1919
build:
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-latest
2121
if: ${{ startsWith(github.ref , 'refs/tags') != true && startsWith(github.ref , 'build-') != true }}
2222
timeout-minutes: 90
2323
name: Check Heap Memory Violations

.github/workflows/check-pr-body.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
check_pr_body:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out the repository
1818
uses: actions/checkout@v3

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
prepare_release:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-latest
1616

1717
steps:
1818
- name: Check out the repository

0 commit comments

Comments
 (0)