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 github actions all dependencies (major) #213

Merged
merged 1 commit into from
Oct 8, 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
8 changes: 4 additions & 4 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
codeql:
name: CodeQL
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
- uses: github/codeql-action/init@v3
Expand All @@ -33,7 +33,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
- name: Run Trivy vulnerability scanner in repo mode
Expand All @@ -54,7 +54,7 @@ jobs:
tests:
name: Tests
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
services:
postgres:
image: postgres
Expand Down Expand Up @@ -109,6 +109,6 @@ jobs:
if: always() && !failure()
# Include all needs that could have failures!
needs: [codeql, trivy, tests]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- run: echo "Workflow completed successfully!"
10 changes: 5 additions & 5 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: TEST Deploys
needs: [vars]
environment: test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
issues: write
strategy:
Expand All @@ -48,7 +48,7 @@ jobs:
parameters:
-p VITE_USER_POOLS_WEB_CLIENT_ID=${{ vars.VITE_USER_POOLS_WEB_CLIENT_ID }}
steps:
- uses: bcgov-nr/action-deployer-openshift@v2.3.0
- uses: bcgov-nr/action-deployer-openshift@v3.0.1
with:
file: ${{ matrix.file }}
oc_namespace: ${{ vars.OC_NAMESPACE }}
Expand All @@ -65,7 +65,7 @@ jobs:
name: PROD Deploys
needs: [vars, deploys-test]
environment: prod
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
name: [backend, frontend]
Expand All @@ -78,7 +78,7 @@ jobs:
file: frontend/openshift.deploy.yml
overwrite: true
steps:
- uses: bcgov-nr/action-deployer-openshift@v2.3.0
- uses: bcgov-nr/action-deployer-openshift@v3.0.1
with:
file: ${{ matrix.file }}
oc_namespace: ${{ vars.OC_NAMESPACE }}
Expand All @@ -94,7 +94,7 @@ jobs:
image-promotions:
name: Promote images
needs: [vars, deploys-prod]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand All @@ -36,7 +36,7 @@ jobs:
deploys:
name: Deploys
needs: [builds]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
name: [backend, frontend]
Expand All @@ -53,7 +53,7 @@ jobs:
-p VITE_USER_POOLS_WEB_CLIENT_ID=${{ vars.VITE_USER_POOLS_WEB_CLIENT_ID }}
triggers: ('backend/' 'frontend/')
steps:
- uses: bcgov-nr/action-deployer-openshift@v2.3.0
- uses: bcgov-nr/action-deployer-openshift@v3.0.1
with:
file: ${{ matrix.file }}
oc_namespace: ${{ vars.OC_NAMESPACE }}
Expand All @@ -74,6 +74,6 @@ jobs:
if: always() && !failure()
# Include all needs that could have failures!
needs: [builds, deploys]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- run: echo "Workflow completed successfully!"
2 changes: 1 addition & 1 deletion .github/workflows/pr-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Validate Results
if: always()
needs: [validate]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- run: |
# View results
Expand Down
Loading