Skip to content

Commit

Permalink
chore(deps): update dependency ubuntu to v24 (#1646)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 27, 2024
1 parent b78cd06 commit 3cb6a97
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fam-modded-zone: ${{ steps.fam-modded-zone.outputs.fam-modded-zone }}
deploy_core: ${{ steps.triggers.outputs.core }}
deploy_sync: ${{ steps.triggers.outputs.sync }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
# Check triggers (omitted or matched)
- name: Check core triggers
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
environment: ${{ inputs.environment }}
if: needs.init.outputs.deploy_core == 'true'
needs: [init]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
VITE_USER_POOLS_ID: ${{ vars.VITE_USER_POOLS_ID }}
VITE_USER_POOLS_WEB_CLIENT_ID: ${{ secrets.VITE_USER_POOLS_WEB_CLIENT_ID }}
VITE_ZONE: TEST
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
# Check triggers (omitted or matched)
- uses: bcgov-nr/[email protected]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
lint:
name: Typescript lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: bcgov-nr/[email protected]
with:
Expand All @@ -29,7 +29,7 @@ jobs:
tests:
name: Java CI
if: ${{ ! github.event.pull_request.draft }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
dir: [backend, oracle-api]
Expand All @@ -56,7 +56,7 @@ jobs:
trivy:
name: Security Scan
if: ${{ ! github.event.pull_request.draft }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner in repo mode
Expand All @@ -78,6 +78,6 @@ jobs:
name: Analysis Results
if: always() && (!failure()) && (!cancelled())
needs: [lint, tests, trivy]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- run: echo "Workflow completed successfully!"
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-22.04
runs-on: ubuntu-24.04
outputs:
triggered: ${{ steps.build.outputs.triggered }}
permissions:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
if: always()
# Include all needs that could have failures!
needs: [builds, deploys, tests]
runs-on: ubuntu-22.04
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-22.04
runs-on: ubuntu-24.04
steps:
- name: Get PR Number Mod 50
id: mod-tag
Expand All @@ -33,6 +33,6 @@ jobs:
name: Validate Results
if: always() && (!failure()) && (!cancelled())
needs: [validate]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- run: echo "Success!"

0 comments on commit 3cb6a97

Please sign in to comment.