Skip to content

Commit

Permalink
Pin specific OS versions in test-integration job
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsmith committed Jul 20, 2023
1 parent b92518a commit 7b85ec0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos, ubuntu, windows]
# We pin specific OS versions, because we need them to be compatible with the
# Python `extra-versions` listed below.
os: [macos-12, ubuntu-20.04, windows-2022]
agp-version: ${{ fromJSON(needs.build-product.outputs.agp-versions) }}

runs-on: ${{ matrix.os }}-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.5.3

Expand Down

0 comments on commit 7b85ec0

Please sign in to comment.