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) #707

Merged
merged 2 commits into from
Oct 23, 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
6 changes: 3 additions & 3 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
tests:
name: Unit Tests
if: ${{ ! github.event.pull_request.draft }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: bcgov-nr/[email protected]
with:
Expand All @@ -37,7 +37,7 @@ jobs:
name: CodeQL
if: ${{ ! github.event.pull_request.draft }}
needs: [tests]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
Expand All @@ -51,7 +51,7 @@ jobs:
name: Trivy Security Scan
if: ${{ ! github.event.pull_request.draft }}
needs: [tests]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/merge-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
builds:
name: Builds
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
name: DEMO Deploys
needs: [builds]
environment: test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
matrix:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
overwrite: true
parameters: -p URL=fom-demo.apps.silver.devops.gov.bc.ca
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 Down
10 changes: 5 additions & 5 deletions .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
environment: test
env:
ZONE: test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
matrix:
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
overwrite: true
parameters: -p URL=fom-test.nrs.gov.bc.ca
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 @@ -68,7 +68,7 @@ jobs:
prod-promotions:
name: Promote images to PROD
needs: [deploy-test]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
component: [api, admin, db, public]
Expand All @@ -86,7 +86,7 @@ jobs:
environment: prod
env:
ZONE: prod
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
matrix:
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
overwrite: true
parameters: -p URL=fom.nrs.gov.bc.ca
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 Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Init
permissions:
pull-requests: write
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
route_number: ${{ steps.calculate.outputs.route_number }}
steps:
Expand All @@ -23,7 +23,7 @@ jobs:
echo "route_number=$((${{ github.event.number }} % 50))" >> $GITHUB_OUTPUT

- name: OpenShift Init
uses: bcgov-nr/action-deployer-openshift@v2.3.0
uses: bcgov-nr/action-deployer-openshift@v3.0.1
with:
oc_namespace: ${{ vars.OC_NAMESPACE }}
oc_server: ${{ vars.OC_SERVER }}
Expand All @@ -35,7 +35,7 @@ jobs:

builds:
name: Builds
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
deploys:
name: Deploys
needs: [builds, init]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
matrix:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
parameters: -p REPLICA_COUNT=1
triggers: ('db/' 'libs/' 'api/' 'public/')
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 Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-validate.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 }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
pull-requests: write
timeout-minutes: 1
Expand Down
Loading