1
0
Fork 0

Change runners to use Ubuntu 20.04

Seems like GitHub finally pulled the plug out of 18.04.
This commit is contained in:
Robbert van der Helm 2023-04-05 20:21:23 +02:00
parent e1c7508624
commit ffb9fb378c
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -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: