Skip to content

Commit 90121bc

Browse files
committed
(PUP-11626) Update Ubuntu GitHub Action runners
GitHub is deprecating Ubuntu 18.04 runners on April 1, 2023. This commit switches all Ubuntu 18.04 used in GitHub Actions to `ubuntu-latest` (currently Ubuntu 20.04).
1 parent dfe10b2 commit 90121bc

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
strategy:
1414
matrix:
1515
cfg:
16-
- {check: rubocop, os: ubuntu-18.04, ruby: 2.5}
17-
- {check: commits, os: ubuntu-18.04, ruby: 2.5}
18-
- {check: warnings, os: ubuntu-18.04, ruby: 2.5}
16+
- {check: rubocop, os: ubuntu-latest, ruby: 2.5}
17+
- {check: commits, os: ubuntu-latest, ruby: 2.5}
18+
- {check: warnings, os: ubuntu-latest, ruby: 2.5}
1919

2020
runs-on: ${{ matrix.cfg.os }}
2121
steps:

.github/workflows/rspec_tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
strategy:
1414
matrix:
1515
cfg:
16-
- {os: ubuntu-18.04, ruby: 2.3}
17-
- {os: ubuntu-18.04, ruby: 2.4}
18-
- {os: ubuntu-18.04, ruby: 2.5}
19-
- {os: ubuntu-18.04, ruby: 2.6}
20-
- {os: ubuntu-18.04, ruby: 2.7}
21-
- {os: ubuntu-18.04, ruby: jruby-9.2.9.0}
16+
- {os: ubuntu-latest, ruby: 2.3}
17+
- {os: ubuntu-latest, ruby: 2.4}
18+
- {os: ubuntu-latest, ruby: 2.5}
19+
- {os: ubuntu-latest, ruby: 2.6}
20+
- {os: ubuntu-latest, ruby: 2.7}
21+
- {os: ubuntu-latest, ruby: jruby-9.2.9.0}
2222
- {os: windows-2019, ruby: 2.4}
2323
- {os: windows-2019, ruby: 2.5}
2424
- {os: windows-2019, ruby: 2.6}

0 commit comments

Comments
 (0)