Skip to content

Commit

Permalink
chore(deps): update dependency ubuntu to v24
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 27, 2024
1 parent b77fb1e commit dab8dee
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
name: Helm
if: ${{ inputs.build_outputs != '' }}
environment: ${{ inputs.environment }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: ${{ inputs.timeout-minutes }}
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
trivy:
name: Trivy Security Scan
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -40,7 +40,7 @@ jobs:
java:
name: Java
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: backend-java
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
python:
name: Python
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
defaults:
run:
working-directory: backend-py
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
name: Analysis Results
needs: [trivy, java, python]
if: always()
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- if: contains(needs.*.result, 'failure')
run: echo "At least one job has failed." && exit 1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Set Variables
outputs:
pr: ${{ steps.pr.outputs.pr }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 1
steps: # Get PR number for squash merges to main
- name: PR Number
Expand All @@ -46,7 +46,7 @@ jobs:
defaults:
run:
working-directory: integration-tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
name: [quarkus, fiber, fastapi]
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
promote:
name: Promote Images
needs: [deploy-prod, vars]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
strategy:
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 @@ -18,7 +18,7 @@ jobs:
packages: write
outputs:
digest: ${{ steps.builds.outputs.digest }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
package: [ backend-go, backend-java, backend-py, migrations-go, migrations-py]
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
name: PR Results
needs: [builds, deploys]
if: always()
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- if: contains(needs.*.result, 'failure')
run: echo "At least one job has failed." && exit 1
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,6 +22,6 @@ jobs:
name: Validate Results
if: always()
needs: [validate]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- run: echo "Success!"

0 comments on commit dab8dee

Please sign in to comment.