Skip to content

Commit

Permalink
Ensure we use ubuntu 24.04 runners for testing (#228)
Browse files Browse the repository at this point in the history
This should give us access to newer dependencies and avoid surprises
cause by use of ubuntu-latest mobile label.
  • Loading branch information
ssbarnea authored Aug 6, 2024
1 parent d13c6c3 commit 821a840
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
jobs:
prepare:
name: prepare
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
matrix: ${{ steps.generate_matrix.outputs.matrix }}
steps:
Expand All @@ -42,7 +42,7 @@ jobs:
platforms: linux,macos
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os || 'ubuntu-22.04' }}
runs-on: ${{ matrix.os || 'ubuntu-24.04' }}
continue-on-error: ${{ contains(matrix.name, 'integration') && true || false }}
needs:
- prepare
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
needs:
- build

runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
# checkout needed for codecov action which needs codecov.yml file
Expand Down

0 comments on commit 821a840

Please sign in to comment.