Skip to content

Commit

Permalink
Update ci.yml for Github Action dependencies (#17)
Browse files Browse the repository at this point in the history
## Description

Support for Ubuntu 18 in Github Actions is deprecated and will be removed altogether in April 2023 - so this PR updates the CI workflow to us Ubuntu 22 - an LTS release with several more years of support at minimum.

This change also updates the use of `actions/checkout` to `@v3` - which addresses a deprecation warning around an outdated Node version usage under-the-hood.

## Related links

- 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/
- actions/checkout#959
  • Loading branch information
cktaylor committed Mar 22, 2023
1 parent 1290761 commit 4a4fb99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -4,9 +4,9 @@ on: push

jobs:
codeowners:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: GitHub CODEOWNERS Validator
uses: mszostok/codeowners-validator@v0.7.1
with:
Expand Down

0 comments on commit 4a4fb99

Please sign in to comment.