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): reverting ubuntu version #239

Merged
merged 8 commits into from
Sep 26, 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/api-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
verify-api:
name: Verify TEST
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
strategy:
matrix:
package: [ test, prod ]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
jobs:
deploy-test:
name: TEST Deployment
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
outputs:
tag: ${{ steps.changelog.outputs.tag }}
permissions:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
image-promotions:
name: Image Promotions
needs: [deploy-test]
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
strategy:
matrix:
tag: [prod, "${{ needs.deploy-test.outputs.tag }}"]
Expand All @@ -108,7 +108,7 @@ jobs:
deploy-prod:
name: PROD Deployment
needs: [image-promotions]
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
environment:
name: prod
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# Clean up OpenShift when PR closed, no conditions
cleanup-openshift:
name: Cleanup OpenShift
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
environment:
name: dev
steps:
Expand All @@ -33,7 +33,7 @@ jobs:
image-promotions:
name: Image Promotions
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main'
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
steps:
- name: Promoting API
uses: shrink/actions-docker-registry-tag@v4
Expand All @@ -47,7 +47,7 @@ jobs:
# Notify when PR merged and branch = main
merge-notification:
name: Merge Notification
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main'
steps:
- name: Pre-merge update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-tests-be.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
tests-java:
name: Backend Tests
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
steps:
- uses: bcgov-nr/action-test-and-analyse-java@v1.0.2
name: Backend Coverage
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-tests-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
trivy:
name: Repository Report
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner in repo mode
Expand All @@ -27,7 +27,7 @@ jobs:

codeql:
name: Semantic Code Analysis
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
Expand Down
Loading