Skip to content

Commit

Permalink
ci: switch pipeline runner to ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
rti committed Jan 13, 2025
1 parent 3d64bae commit cdd3be8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/_build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 30

steps:
Expand All @@ -16,7 +16,7 @@ jobs:
- run: ./nx lint

build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 60

strategy:
Expand All @@ -42,7 +42,7 @@ jobs:

test:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 20

strategy:
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
test-success:
# Post-test CI step - to check all tests succeeded
# Github Branch Protection rules require this to pass to allow merging
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs:
- lint
- test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_publish_image_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
extract_tag_and_publish:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Extract image name and confirm it is a valid semantic version tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ permissions:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit cdd3be8

Please sign in to comment.