Skip to content

Commit

Permalink
github: update runners to -latest
Browse files Browse the repository at this point in the history
macos-10.15 has long been unavailable. Future-proof it by using -latest for everything.
  • Loading branch information
dlech authored Mar 7, 2024
1 parent db12124 commit 94a54e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-10.15]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v3
Expand All @@ -41,7 +41,7 @@ jobs:

build_sdist:
name: Build source distribution
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -56,7 +56,7 @@ jobs:

upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
# upload to PyPI on every tag
if: github.event_name == 'push' && github.ref_type == 'tag'
steps:
Expand Down

0 comments on commit 94a54e8

Please sign in to comment.