Skip to content

Commit

Permalink
chore(deps): update github actions all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 25, 2024
1 parent de01798 commit 07d2711
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backend-cd-ocp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# Only allow run the CD flow in protected branch
if: github.ref_protected == true

runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

defaults:
run:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
deploy:
needs: setup
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

environment:
name: "${{ needs.setup.outputs.TARGET }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/backend-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Only allow run the CD flow in protected branch
if: github.ref_protected == true

runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

defaults:
run:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
deploy:
needs: setup
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

environment:
name: "${{ needs.setup.outputs.TARGET }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
with:
name: coveragefile
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
file: coverage.xml
flags: ${{ inputs.codecov_flag }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/backend-job-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Only allow run the CD flow in protected branch
if: github.ref_protected == true

runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

defaults:
run:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
deploy:
needs: setup
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

environment:
name: "${{ needs.setup.outputs.TARGET }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/downpage-off.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
downpage-off:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/downpage-on.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
default: "prod"
jobs:
downpage-on:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
with:
name: coveragefile
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
file: coverage.xml
flags: ${{ inputs.codecov_flag }}
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
with:
name: coveragefile
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
file: coverage.xml
flags: ${{ inputs.codecov_flag }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/restart-services-hourly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
restart-services:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/restart-services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
restart-services:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
environment: ${{ github.event.inputs.environment }}
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/vault-service-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:

jobs:
vault-service-cd-by-push:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

if: github.event_name == 'push' && github.repository == 'bcgov/bcregistry-sre'
environment:
Expand All @@ -38,7 +38,7 @@ jobs:
echo "::set-output name=ENV_NAME::$TAG_NAME"
vault-service-cd-by-dispatch:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

if: github.event_name == 'workflow_dispatch' && github.repository == 'bcgov/bcregistry-sre'
environment:
Expand All @@ -52,7 +52,7 @@ jobs:
echo "::set-output name=ENV_NAME::$TAG_NAME"
vault-service-cd-flow:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [vault-service-cd-by-push, vault-service-cd-by-dispatch]
if: ${{ always() && contains(needs.*.result, 'success') && !(contains(needs.*.result, 'failure')) }}
steps:
Expand Down

0 comments on commit 07d2711

Please sign in to comment.