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

Merged
merged 1 commit into from
Jan 2, 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
4 changes: 2 additions & 2 deletions .github/workflows/merge-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
build_file: public/Dockerfile
triggers: ('public/' 'libs/')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: bcgov-nr/[email protected]
with:
package: ${{ matrix.package }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
overwrite: true
parameters: -p URL=fom-demo.apps.silver.devops.gov.bc.ca -p CERTBOT=false
steps:
- uses: bcgov-nr/action-deployer-openshift@v1.4.0
- uses: bcgov-nr/action-deployer-openshift@v2.0.0
with:
file: ${{ matrix.file }}
oc_namespace: ${{ vars.OC_NAMESPACE }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ jobs:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: javascript

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

deploy-test:
name: TEST Deploys
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
overwrite: true
parameters: -p URL=fom-test.nrs.gov.bc.ca
steps:
- uses: bcgov-nr/action-deployer-openshift@v1.4.0
- uses: bcgov-nr/action-deployer-openshift@v2.0.0
with:
file: ${{ matrix.file }}
oc_namespace: ${{ vars.OC_NAMESPACE }}
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
overwrite: true
parameters: -p URL=fom.nrs.gov.bc.ca
steps:
- uses: bcgov-nr/action-deployer-openshift@v1.4.0
- uses: bcgov-nr/action-deployer-openshift@v2.0.0
with:
file: ${{ matrix.file }}
oc_namespace: ${{ vars.OC_NAMESPACE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
NAME: fom
ZONE: ${{ needs.setup.outputs.zone }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Remove OpenShift artifacts
run: |
oc login --token=${{ secrets.OC_TOKEN }} --server=${{ vars.OC_SERVER }}
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 @@ -32,7 +32,7 @@ jobs:
if: github.event.action == 'opened' || github.event.action == 'reopened'
env:
DOMAIN: apps.silver.devops.gov.bc.ca
uses: bcgov-nr/action-pr-description-add@v0.0.2
uses: bcgov-nr/action-pr-description-add@v1.1.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
add_markdown: |
Expand All @@ -48,7 +48,7 @@ jobs:
- [Main Merge Workflow](https://github.com/${{ github.repository }}/actions/workflows/merge-main.yml)

- name: OpenShift Init
uses: bcgov-nr/action-deployer-openshift@v1.4.0
uses: bcgov-nr/action-deployer-openshift@v2.0.0
with:
oc_namespace: ${{ vars.OC_NAMESPACE }}
oc_server: ${{ vars.OC_SERVER }}
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
build_file: public/Dockerfile
triggers: ('public/' 'libs/')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: bcgov-nr/[email protected]
with:
package: ${{ matrix.package }}
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
parameters: -p CERTBOT=false -p REPLICA_COUNT=1
triggers: ('db/' 'libs/' 'api/' 'public/')
steps:
- uses: bcgov-nr/action-deployer-openshift@v1.4.0
- uses: bcgov-nr/action-deployer-openshift@v2.0.0
with:
file: ${{ matrix.file }}
oc_namespace: ${{ vars.OC_NAMESPACE }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/[email protected]
Expand All @@ -56,6 +56,6 @@ jobs:
severity: "CRITICAL,HIGH"

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: "trivy-results.sarif"
Loading