Skip to content

Commit

Permalink
ci: Move to Ubuntu 20.04 Actions runners
Browse files Browse the repository at this point in the history
- The 18.04 runners are deprecated and going away in less than a month.
  Today was another scheduled brownout from GitHub
  (https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/),
  and they've been unmarked as required checks in the branch protections
  because the images are unavailable and the jobs were failing.
- However, we still need to test that Homebrew works correctly on
  non-latest Ubuntu versions so that we can test that we're correctly
  using brewed gcc/glibc, hence upgrading to 20.04 which is still old.
  • Loading branch information
issyl0 committed Mar 7, 2023
1 parent 19a696f commit b95c549
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,9 +264,9 @@ jobs:
- name: tests (Ubuntu 22.04)
test-flags: --coverage
runs-on: ubuntu-22.04
- name: tests (Ubuntu 18.04)
- name: tests (Ubuntu 20.04)
test-flags: --coverage
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
- name: tests (macOS 12)
test-flags: --coverage
runs-on: macos-12
Expand Down Expand Up @@ -354,8 +354,8 @@ jobs:
include:
- name: test default formula (Ubuntu 22.04)
runs-on: ubuntu-22.04
- name: test default formula (Ubuntu 18.04)
runs-on: ubuntu-18.04
- name: test default formula (Ubuntu 20.04)
runs-on: ubuntu-20.04
- name: test default formula (macOS 12)
runs-on: macos-12
steps:
Expand Down

0 comments on commit b95c549

Please sign in to comment.