1
0
forked from GitHub/gf-core

gh-actions: Don't use ubuntu-18 and macos-10.15

There are no longer any gihub actions runners available for these

Note that this means we can't build for ubuntu-18 anymore, but that
should hopefully no longer be relevant, since it's over 5 years old now.
This commit is contained in:
Andreas Källberg
2023-09-25 12:48:56 +02:00
parent 30c1376232
commit 37f06a4ae8
2 changed files with 2 additions and 2 deletions

View File

@@ -14,8 +14,8 @@ jobs:
strategy:
matrix:
os:
- ubuntu-18.04
- ubuntu-20.04
- ubuntu-22.04
runs-on: ${{ matrix.os }}

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-18.04, macos-10.15]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v1