Skip to content

Commit 9e18049

Browse files
authored
Target *-latest runner images in CI workflow (#1178)
We are using the `*-latest` runner images for release builds ([win](https://github.com/git-ecosystem/git-credential-manager/blob/e36952e16700cc829ea79f65a29424d164ad4e1a/.github/workflows/release.yml#L253), [linux](https://github.com/git-ecosystem/git-credential-manager/blob/e36952e16700cc829ea79f65a29424d164ad4e1a/.github/workflows/release.yml#L361)), but for CI we're instead using `ubuntu-18.04`, `ubuntu-20.04`, and `windows-2019` (alongside `macos-latest`). Let's run CI against the latest of all three OS images to match what we're using to build release bits. Ubuntu 18.04 is also [deprecated](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources) as a GitHub hosted runner.
2 parents e36952e + 3d625de commit 9e18049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
os: [ubuntu-18.04, ubuntu-20.04, windows-2019, macos-latest]
17+
os: [ubuntu-latest, windows-latest, macos-latest]
1818

1919
steps:
2020
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8

0 commit comments

Comments
 (0)