Skip to content

Commit

Permalink
Update Ubuntu versions used in GitHub Actions
Browse files Browse the repository at this point in the history
* Ubuntu 16.04 was removed on Sep 20, 2021, as per
  actions/runner-images#3287
* Currently-available versions are 18.04 (deprecated), 20.04, and 22.04 as per
  https://github.com/actions/runner-images#available-images

Added a comment pointing to the list of currently-available Ubuntu versions in
a comment in the workflow config to make it easire to find the full list and
update it in the future.
  • Loading branch information
mbrukman committed Sep 17, 2022
1 parent c300af5 commit 89666f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-16.04, ubuntu-18.04, ubuntu-latest]
# https://github.com/actions/runner-images#available-images
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]

steps:
- uses: actions/checkout@v1
Expand Down

0 comments on commit 89666f5

Please sign in to comment.