Skip to content

Commit 4a4fb99

Browse files
authored
Update ci.yml for Github Action dependencies (#17)
## 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
1 parent 1290761 commit 4a4fb99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on: push
44

55
jobs:
66
codeowners:
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-22.04
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
- name: GitHub CODEOWNERS Validator
1111
uses: mszostok/codeowners-validator@v0.7.1
1212
with:

0 commit comments

Comments
 (0)