lock down Ubuntu version for main CI

Main CI tests have just started failing, perhaps as ubuntu-latest
migrates to a new version.
This commit is contained in:
Paul Fitzpatrick 2024-10-15 11:44:21 -04:00
parent 4b8f10fc12
commit 4668e41646
No known key found for this signature in database
GPG Key ID: 07F16BF3214888F6

View File

@ -11,7 +11,7 @@ on:
jobs:
build_and_test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
# it is helpful to know which sets of tests would have succeeded,
# even when there is a failure.
@ -167,7 +167,7 @@ jobs:
candidate:
needs: build_and_test
if: ${{ success() && github.event_name == 'push' }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Fetch new candidate branch
uses: actions/checkout@v3