Skip to content

Commit

Permalink
chore(ci): use GH runner ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Jan 19, 2025
1 parent cb22681 commit fe6c9d5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
outputs:
allowed_origins: ${{ steps.allowed_origins.outputs.allowed_origins }}
route: ${{ steps.route.outputs.route }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: FAM routing
id: route
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
name: Deploy
environment: ${{ inputs.environment }}
needs: [init]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 15
strategy:
matrix:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
tests-backend:
name: Tests (Backend)
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: bcgov-nr/[email protected]
with:
Expand All @@ -37,7 +37,7 @@ jobs:
lint-frontend:
name: Lint (Frontend)
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: bcgov-nr/[email protected]
with:
Expand All @@ -52,7 +52,7 @@ jobs:
tests-frontend:
name: Tests (Frontend)
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: bcgov-nr/[email protected]
env:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
trivy:
name: Trivy Security Scan
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -107,7 +107,7 @@ jobs:
if: always()
# Include all needs that could have failures!
needs: [lint-frontend, tests-backend, tests-frontend] # Include trivy when/if it gets back to being reliable
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- run: |
# View results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Initialize
outputs:
pr: ${{ steps.pr.outputs.pr }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
# Get PR number for squash merges to main
- id: pr
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
promote:
name: Promote Images
needs: [init, deploys-prod]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
package: [backend, frontend]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pentests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
env:
DOMAIN: apps.silver.devops.gov.bc.ca
PREFIX: ${{ github.event.repository.name }}-test
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
component: [backend, frontend]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
jobs:
builds:
name: Builds
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
if: always()
# Include all needs that could have failures!
needs: [builds, deploys]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- run: |
# View results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Initialize
outputs:
mod-tag: ${{ steps.mod-tag.outputs.mod-tag }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Get PR Number Mod 50
id: mod-tag
Expand All @@ -32,7 +32,7 @@ jobs:
name: Validate Results
if: always()
needs: [validate]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- run: |
# View results
Expand Down

0 comments on commit fe6c9d5

Please sign in to comment.