Skip to content
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/builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
image_tag: ${{ steps.deploy_tag.outputs.tag }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Parse Input Values
id: parse
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/charts-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deployer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Login to OpenShift Cluster
uses: bcgov/action-oc-runner@111868d1fc50db0a40417ba321d865ef5c931bbd # v1.7.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Login to OpenShift Cluster
uses: bcgov/action-oc-runner@111868d1fc50db0a40417ba321d865ef5c931bbd # v1.7.0
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
timeout-minutes: 12
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Login to OpenShift Cluster
uses: bcgov/action-oc-runner@111868d1fc50db0a40417ba321d865ef5c931bbd # v1.7.0
Expand All @@ -145,7 +145,7 @@ jobs:
delete: true

- name: Remove Github Deployment Environment
uses: strumwolf/delete-deployment-environment@v3
uses: strumwolf/delete-deployment-environment@v4
with:
environment: pr
onlyRemoveDeployments: true
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- "24.x"
steps:
- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Check Sonar Secrets
id: check-secrets
run: |
Expand All @@ -67,7 +67,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v5
uses: actions/cache@v6
id: cache-app
env:
cache-name: cache-node-modules
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- "24.x"
steps:
- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Check Sonar Secrets
id: check-secrets
run: |
Expand All @@ -134,7 +134,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v5
uses: actions/cache@v6
id: cache-frontend
env:
cache-name: cache-node-modules
Expand Down Expand Up @@ -182,14 +182,14 @@ jobs:
contents: read
steps:
- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Restore Coverage Results
uses: actions/download-artifact@v8
with:
name: coverage-app
path: ${{ github.workspace }}/app/coverage
- name: SonarCloud Scan
uses: SonarSource/sonarqube-scan-action@c7ee0f9df90b7aa20e8dcf9695dcfe2e7da5b4f2 # v7.2.1
uses: SonarSource/sonarqube-scan-action@713881670b6b3676cda39549040e2d88c70d582e # v8.2.0
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_APP }}
with:
Expand All @@ -206,14 +206,14 @@ jobs:
contents: read
steps:
- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Restore Coverage Results
uses: actions/download-artifact@v8
with:
name: coverage-frontend
path: ${{ github.workspace }}/frontend/coverage
- name: SonarCloud Scan
uses: SonarSource/sonarqube-scan-action@c7ee0f9df90b7aa20e8dcf9695dcfe2e7da5b4f2 # v7.2.1
uses: SonarSource/sonarqube-scan-action@713881670b6b3676cda39549040e2d88c70d582e # v8.2.0
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_FRONTEND }}
with:
Expand Down
Loading