diff options
| author | Andreas Källberg <anka.213@gmail.com> | 2023-09-25 12:48:56 +0200 |
|---|---|---|
| committer | Andreas Källberg <anka.213@gmail.com> | 2023-09-25 12:48:56 +0200 |
| commit | 37f06a4ae845471009610d79d616eab0bdd903d3 (patch) | |
| tree | a46602f2a170ce14107f7ec01049fd000893d6fb | |
| parent | 30c13762329d406c4dc155d72767ee407ab590e0 (diff) | |
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.
| -rw-r--r-- | .github/workflows/build-binary-packages.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/build-python-package.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-binary-packages.yml b/.github/workflows/build-binary-packages.yml index 493d5e774..d476aa161 100644 --- a/.github/workflows/build-binary-packages.yml +++ b/.github/workflows/build-binary-packages.yml @@ -14,8 +14,8 @@ jobs: strategy: matrix: os: - - ubuntu-18.04 - ubuntu-20.04 + - ubuntu-22.04 runs-on: ${{ matrix.os }} diff --git a/.github/workflows/build-python-package.yml b/.github/workflows/build-python-package.yml index 67cbba6dd..0f6e3c050 100644 --- a/.github/workflows/build-python-package.yml +++ b/.github/workflows/build-python-package.yml @@ -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 |
