Skip to content

Commit

Permalink
Update runner versions used in GitHub Actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Dec 5, 2024
1 parent 5357c8d commit a62fa9d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

wheel-linux-aarch64:
name: Build Linux wheels (Aarch64)
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -34,7 +34,7 @@ jobs:

wheel-linux-x86_64:
name: Build Linux wheels (x86-64)
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -54,7 +54,7 @@ jobs:

wheel-macos-x86_64:
name: Build MacOS wheels (x86-64)
runs-on: macOS-12
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -75,7 +75,7 @@ jobs:

wheel-macos-aarch64:
name: Build MacOS wheels (Aarch64)
runs-on: macOS-12
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,13 @@ jobs:

test_linux:
name: Test (Linux)
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
env:
OS: Linux
strategy:
fail-fast: false
matrix:
include:
- python-version: 3.7
python-release: v3.7
python-impl: CPython
- python-version: 3.8
python-release: v3.8
python-impl: CPython
Expand Down Expand Up @@ -73,16 +70,13 @@ jobs:

test_osx:
name: Test (OSX)
runs-on: macos-12
runs-on: macos-latest
env:
OS: OSX
strategy:
fail-fast: false
matrix:
include:
- python-version: 3.7
python-release: v3.7
python-impl: CPython
- python-version: 3.8
python-release: v3.8
python-impl: CPython
Expand Down Expand Up @@ -229,4 +223,4 @@ jobs:
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
codecov_curl_args: "--globoff"
verbose: true
verbose: true

0 comments on commit a62fa9d

Please sign in to comment.