Skip to content

Commit

Permalink
chore: Use default GitHub Actions runner
Browse files Browse the repository at this point in the history
  • Loading branch information
nickevansuk committed Jan 31, 2025
1 parent 8cb6d14 commit a602e77
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:

runs-on: ubuntu-22.04-l
runs-on: ubuntu-latest

steps:
- name: Checkout OpenActive Test Suite
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# Master branch only - extra checks
if: ${{ github.ref == 'refs/heads/master' }}
needs: code-tests
runs-on: ubuntu-22.04-l
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
# Copied from code-tests.yml, TODO: Remove this duplication
code-tests:
runs-on: ubuntu-22.04-l
runs-on: ubuntu-latest

steps:
- name: Checkout OpenActive Test Suite
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reference-implementation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
tests:
runs-on: ubuntu-22.04-l
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
# Master branch only
if: ${{ github.ref == 'refs/heads/master' }}

runs-on: ubuntu-22.04-l
runs-on: ubuntu-latest

steps:
# Checkout the repo to seed the contents of ./tests/publish/
Expand Down

0 comments on commit a602e77

Please sign in to comment.