summaryrefslogtreecommitdiff
path: root/.github/workflows/build-python-package.yml
diff options
context:
space:
mode:
authorAndreas Källberg <anka.213@gmail.com>2023-09-25 12:48:56 +0200
committerAndreas Källberg <anka.213@gmail.com>2023-09-25 12:48:56 +0200
commit37f06a4ae845471009610d79d616eab0bdd903d3 (patch)
treea46602f2a170ce14107f7ec01049fd000893d6fb /.github/workflows/build-python-package.yml
parent30c13762329d406c4dc155d72767ee407ab590e0 (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.
Diffstat (limited to '.github/workflows/build-python-package.yml')
-rw-r--r--.github/workflows/build-python-package.yml2
1 files changed, 1 insertions, 1 deletions
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