Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency ubuntu to v24 #368

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
cypress-e2e:
name: Cypress E2E
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
browser: [chrome]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
trivy:
name: Trivy Security Scan
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
semanticVersion: ${{ steps.changelog.outputs.version }}
tag: ${{ steps.changelog.outputs.tag }}
clean_changelog: ${{ steps.changelog.outputs.clean_changelog }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
steps:
- uses: actions/checkout@v4
Expand All @@ -33,7 +33,7 @@ jobs:

retag-images:
needs: [ semantic-version ]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
package: [ api, database, frontend ]
Expand All @@ -50,7 +50,7 @@ jobs:
name: TEST Deployments
needs: [retag-images, semantic-version]
environment: test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
name: PROD Deployments
needs: [semantic-version, tests]
environment: prod
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# Clean up OpenShift when PR closed, no conditions
cleanup-openshift:
name: Cleanup OpenShift
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: redhat-actions/openshift-tools-installer@v1
with:
Expand All @@ -30,7 +30,7 @@ jobs:
image-promotions:
name: Image Promotions
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
package: [api, database, frontend]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-open.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 }}-${{ github.event.number }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
pull-requests: write
steps:
Expand All @@ -36,7 +36,7 @@ jobs:
builds:
name: Builds
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand All @@ -62,7 +62,7 @@ jobs:
deploys:
name: Deploys
needs: [builds]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: redhat-actions/openshift-tools-installer@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
pubcode-crawler:
name: Crawl Git Repos for bcgovpubcode.yml
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
environment: prod
defaults:
run:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
validate-ministry-list:
name: Validate Ministry List in the pubcode schema.
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: schema/script
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
soft-delete-removed-pubcodes:
name: Soft Delete pubcodes In the Databse which are removed from the repo.
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: utilities/remove-deleted-pubcode
Expand Down
Loading