Use Ubuntu 22.04 instead of 20.04 on GitHub Actions
This commit is contained in:
parent
fe782a73f1
commit
6c15ccbebe
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ct.yml
vendored
2
.github/workflows/ct.yml
vendored
|
|
@ -14,7 +14,7 @@ permissions:
|
|||
|
||||
jobs:
|
||||
ct:
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Check out repository ✨ (non-dependabot)
|
||||
if: ${{ github.actor != 'dependabot[bot]' }}
|
||||
|
|
|
|||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -16,7 +16,7 @@ on:
|
|||
jobs:
|
||||
release:
|
||||
name: "Build, Test, Publish"
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Check out repository ✨
|
||||
uses: actions/checkout@v3
|
||||
|
|
|
|||
Loading…
Reference in a new issue