Skip to content

Commit 9b40463

Browse files
fix(deps): update all dependencies
1 parent 9478e5f commit 9b40463

24 files changed

+374
-274
lines changed

.github/workflows/analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-24.04
2323
timeout-minutes: 5
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
- uses: github/codeql-action/init@v4
2727
with:
2828
languages: javascript
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-24.04
4343
timeout-minutes: 1
4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v6
4646
- name: Run Trivy vulnerability scanner in repo mode
4747
uses: aquasecurity/trivy-action@0.33.1
4848
with:
@@ -106,7 +106,7 @@ jobs:
106106
token: SONAR_TOKEN_PUBLIC
107107
triggers: ('public')
108108
steps:
109-
- uses: bcgov/action-test-and-analyse@v1.4.0
109+
- uses: bcgov/action-test-and-analyse@v1.6.0
110110
with:
111111
commands: |
112112
npm ci

.github/workflows/bceid-smoke-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
timeout-minutes: 10
8282
steps:
83-
- uses: actions/checkout@v4
83+
- uses: actions/checkout@v6
8484

8585
- name: Load credentials for ${{ matrix.role }}
8686
id: creds
@@ -90,7 +90,7 @@ jobs:
9090
echo "CYPRESS_PASSWORD=${{ secrets[format('PASSWORD_{0}', matrix.role)] }}" >> $GITHUB_ENV
9191
9292
- name: Run Cypress tests for ${{ matrix.role }}
93-
uses: cypress-io/github-action@v6.9.2
93+
uses: cypress-io/github-action@v7.0.0
9494
env:
9595
CYPRESS_baseUrl: https://${{ github.event.repository.name }}-${{ needs.vars.outputs.target || 'test' }}-frontend.apps.silver.devops.gov.bc.ca/
9696
CYPRESS_wait_time: 2000
@@ -103,14 +103,14 @@ jobs:
103103
spec: cypress/e2e/smoke/${{matrix.test}}
104104
working-directory: tests
105105

106-
- uses: actions/upload-artifact@v4
106+
- uses: actions/upload-artifact@v6
107107
if: failure() || inputs.show_artifact
108108
with:
109109
name: ${{matrix.test}}-${{matrix.role}}-${{matrix.browser}} screenshot
110110
path: tests/cypress/screenshots/
111111
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`
112112

113-
- uses: actions/upload-artifact@v4
113+
- uses: actions/upload-artifact@v6
114114
if: failure() || inputs.show_artifact
115115
with:
116116
name: ${{matrix.test}}-${{matrix.role}}-${{matrix.browser}} video

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
runs-on: ubuntu-22.04
119119
timeout-minutes: 10
120120
steps:
121-
- uses: actions/checkout@v4
121+
- uses: actions/checkout@v6
122122
- name: Check Deployment Triggers
123123
id: triggers
124124
run: |

.github/workflows/idir-smoke-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979

8080
timeout-minutes: 10
8181
steps:
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v6
8383

8484
- name: Load credentials for ${{ matrix.role }}
8585
id: creds
@@ -89,7 +89,7 @@ jobs:
8989
echo "CYPRESS_PASSWORD=${{ secrets[format('PASSWORD_{0}', matrix.role)] }}" >> $GITHUB_ENV
9090
9191
- name: Run Cypress tests for ${{ matrix.role }}
92-
uses: cypress-io/github-action@v6.9.2
92+
uses: cypress-io/github-action@v7.0.0
9393
env:
9494
CYPRESS_baseUrl: https://${{ github.event.repository.name }}-${{ needs.vars.outputs.target || 'test' }}-frontend.apps.silver.devops.gov.bc.ca/
9595
CYPRESS_wait_time: 2000
@@ -102,14 +102,14 @@ jobs:
102102
spec: cypress/e2e/smoke/${{matrix.test}}
103103
working-directory: tests
104104

105-
- uses: actions/upload-artifact@v4
105+
- uses: actions/upload-artifact@v6
106106
if: failure() || inputs.show_artifact
107107
with:
108108
name: ${{matrix.test}}-${{matrix.role}}-${{matrix.browser}} screenshot
109109
path: tests/cypress/screenshots/
110110
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`
111111

112-
- uses: actions/upload-artifact@v4
112+
- uses: actions/upload-artifact@v6
113113
if: failure() || inputs.show_artifact
114114
with:
115115
name: ${{matrix.test}}-${{matrix.role}}-${{matrix.browser}} video

.github/workflows/loadtest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
runs-on: ubuntu-22.04
3333
timeout-minutes: 60
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636

3737
- name: Run All JMeter Tests In tests Folder
38-
uses: rbhadti94/apache-jmeter-action@v0.5.0
38+
uses: rbhadti94/apache-jmeter-action@v0.7.0
3939
with:
4040
testFilePath: loadtests
4141
outputReportsFolder: loadtests/results
@@ -48,7 +48,7 @@ jobs:
4848
-JVEHICLES_API_URL=${{inputs.vehicles_api_url}}
4949
-JRESULTS_DIR=loadtest/results
5050
51-
- uses: actions/upload-artifact@v4.3.6
51+
- uses: actions/upload-artifact@v6.0.0
5252
with:
5353
name: jmeter-test-results
5454
path: loadtests/results

.github/workflows/merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Get PR Number From Event
3131
if: github.event_name == 'push'
3232
id: pr_no
33-
uses: bcgov/action-get-pr@v0.0.1
33+
uses: bcgov/action-get-pr@v0.1.0
3434
- name: PR Number
3535
id: pr
3636
run: echo pr=${{ steps.pr_no.outputs.pr || inputs.pr}} >> $GITHUB_OUTPUT

.github/workflows/pr-close.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
jobs:
1313
cleanup-silver:
1414
name: Cleanup OpenShift and/or Promote Images
15-
uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-close.yml@v1.0.0 # v1.0.0
15+
uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-close.yml@v1.0.1
1616
secrets:
1717
oc_namespace: ${{ secrets.OC_NAMESPACE }}
1818
oc_token: ${{ secrets.OC_TOKEN }}
@@ -24,7 +24,7 @@ jobs:
2424

2525
cleanup-gold:
2626
name: Cleanup OpenShift and/or Promote Images
27-
uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-close.yml@v1.0.0 # v1.0.0
27+
uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-close.yml@v1.0.1
2828
secrets:
2929
oc_namespace: ${{ secrets.OC_NAMESPACE }}
3030
oc_token: ${{ secrets.OC_TOKEN }}
@@ -36,7 +36,7 @@ jobs:
3636

3737
cleanup-golddr:
3838
name: Cleanup OpenShift and/or Promote Images
39-
uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-close.yml@v1.0.0 # v1.0.0
39+
uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-close.yml@v1.0.1
4040
secrets:
4141
oc_namespace: ${{ secrets.OC_NAMESPACE }}
4242
oc_token: ${{ secrets.OC_TOKEN }}

.github/workflows/pr-open.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
pull-requests: write
2222
timeout-minutes: 1
2323
steps:
24-
- uses: bcgov/action-pr-description-add@v1.1.2
24+
- uses: bcgov/action-pr-description-add@v2.0.1
2525
with:
2626
github_token: ${{ secrets.GITHUB_TOKEN }}
2727
add_markdown: |
@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- name: PR Number
5454
id: pr
55-
uses: bcgov/action-get-pr@v0.0.1
55+
uses: bcgov/action-get-pr@v0.1.0
5656

5757
# https://github.com/bcgov/action-builder-ghcr
5858
builds:
@@ -66,7 +66,7 @@ jobs:
6666
package: [dops, vehicles, frontend, scheduler, policy, public]
6767
timeout-minutes: 10
6868
steps:
69-
- uses: bcgov/action-builder-ghcr@v2.2.0
69+
- uses: bcgov/action-builder-ghcr@v4.2.1
7070
with:
7171
#keep_versions: 50
7272
package: ${{ matrix.package }}

.github/workflows/rbac-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191

9292
timeout-minutes: 10
9393
steps:
94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v6
9595

9696
- name: Load credentials for ${{ matrix.role }}
9797
id: creds
@@ -101,7 +101,7 @@ jobs:
101101
echo "CYPRESS_PASSWORD=${{ secrets[format('PASSWORD_{0}', matrix.role)] }}" >> $GITHUB_ENV
102102
103103
- name: Run Cypress tests for ${{ matrix.role }}
104-
uses: cypress-io/github-action@v6.9.2
104+
uses: cypress-io/github-action@v7.0.0
105105
env:
106106
CYPRESS_baseUrl: https://${{ github.event.repository.name }}-${{ needs.vars.outputs.target || 'test' }}-frontend.apps.silver.devops.gov.bc.ca/
107107
CYPRESS_wait_time: 2000
@@ -114,14 +114,14 @@ jobs:
114114
spec: cypress/e2e/rbac/${{matrix.test}}
115115
working-directory: tests
116116

117-
- uses: actions/upload-artifact@v4
117+
- uses: actions/upload-artifact@v6
118118
if: failure() || inputs.show_artifact
119119
with:
120120
name: ${{matrix.test}}-${{matrix.role}}-${{matrix.browser}} screenshot
121121
path: tests/cypress/screenshots/
122122
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`
123123

124-
- uses: actions/upload-artifact@v4
124+
- uses: actions/upload-artifact@v6
125125
if: failure() || inputs.show_artifact
126126
with:
127127
name: ${{matrix.test}}-${{matrix.role}}-${{matrix.browser}} video

.github/workflows/scheduled.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: [dops, frontend, vehicles, policy, scheduler, public]
2121
steps:
2222
- name: ZAP Scan
23-
uses: zaproxy/action-full-scan@v0.12.0
23+
uses: zaproxy/action-full-scan@v0.13.0
2424
with:
2525
allow_issue_writing: true
2626
artifact_name: "zap_${{ matrix.name }}"
@@ -47,7 +47,7 @@ jobs:
4747
- 5432:5432
4848
timeout-minutes: 10
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v6
5151
- uses: joshuaavalon/flyway-action@v3.0.0
5252
name: Generate SchemaSpy docs for node backend
5353
with:

0 commit comments

Comments
 (0)