From a62fa9d13e15525adc7ed431317be4e0e4e88094 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Thu, 5 Dec 2024 13:33:51 +0100 Subject: [PATCH] Update runner versions used in GitHub Actions workflows --- .github/workflows/package.yml | 8 ++++---- .github/workflows/test.yml | 12 +++--------- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 13846ec..57c0e02 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -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: @@ -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: @@ -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: @@ -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: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index edf69a6..3763d3c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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 @@ -229,4 +223,4 @@ jobs: fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} codecov_curl_args: "--globoff" - verbose: true \ No newline at end of file + verbose: true