Skip to content

Commit

Permalink
chore(deps): update dependency ubuntu to v24 (#78)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Paulo Gomes da Cruz Junior <paulo.cruz@gov.bc.ca>
  • Loading branch information
renovate[bot] and paulushcgcj authored Sep 27, 2024
1 parent b893fd0 commit 4de96ed
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/.deployer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
deployer:
name: Helm
environment: ${{ inputs.environment }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
triggered: ${{ steps.triggers.outputs.triggered }}
steps:
Expand Down Expand Up @@ -105,6 +105,11 @@ jobs:
echo "release=${release}" >> $GITHUB_OUTPUT
### Deploy
- name: Install CLI tools from OpenShift Mirror
if: steps.triggers.outputs.triggered == 'true'
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: "4.13"

# OC Login
- if: steps.triggers.outputs.triggered == 'true'
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/.pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ on:
jobs:
vars:
if: inputs.packages != ''
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
packages: ${{ steps.packages.outputs.packages }}
steps:
Expand All @@ -85,7 +85,7 @@ jobs:
name: Retags
if: ${{ github.event.pull_request.merged == true && github.event.pull_request.base.ref == inputs.merge_branch }}
needs: vars
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
Expand Down Expand Up @@ -138,9 +138,14 @@ jobs:
cleanup:
name: OpenShift
if: inputs.cleanup == 'helm' || inputs.cleanup == 'label'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- name: Install CLI tools from OpenShift Mirror
uses: redhat-actions/openshift-tools-installer@v1
with:
oc: "4.13"

# OC Login
- run: |
# OC Login
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 @@ -22,7 +22,7 @@ on:
jobs:
checks:
name: Checks
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
# Conventional commits
- name: Conventional Commits
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
package: [migrations, backend, frontend]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
builds:
name: Fake Builds (retags)
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
package: [backend, frontend, migrations]
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
results:
name: Results
needs: [deploys]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- if: needs.deploys.outputs.triggered == 'true'
run: echo "Success!"
Expand Down

0 comments on commit 4de96ed

Please sign in to comment.