Change runners to use Ubuntu 20.04
Seems like GitHub finally pulled the plug out of 18.04.
This commit is contained in:
parent
e1c7508624
commit
ffb9fb378c
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- { name: ubuntu-18.04, os: ubuntu-18.04, cross-target: '' }
|
- { name: ubuntu-20.04, os: ubuntu-20.04, cross-target: '' }
|
||||||
- { name: macos-universal, os: macos-11, cross-target: aarch64-apple-darwin }
|
- { name: macos-universal, os: macos-11, cross-target: aarch64-apple-darwin }
|
||||||
- { name: windows, os: windows-latest, cross-target: '' }
|
- { name: windows, os: windows-latest, cross-target: '' }
|
||||||
name: Package plugin binaries
|
name: Package plugin binaries
|
||||||
|
|
2
.github/workflows/docs.yml
vendored
2
.github/workflows/docs.yml
vendored
|
@ -13,7 +13,7 @@ defaults:
|
||||||
jobs:
|
jobs:
|
||||||
docs:
|
docs:
|
||||||
name: Generate and upload docs
|
name: Generate and upload docs
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
# Needed for git-describe to do anything useful
|
# Needed for git-describe to do anything useful
|
||||||
|
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-18.04, macos-11, windows-latest]
|
os: [ubuntu-20.04, macos-11, windows-latest]
|
||||||
name: Build and test all components
|
name: Build and test all components
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue