From 4405d581dc0217d6bd6163582ec20d65b2e0465c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 18:29:22 +0000 Subject: [PATCH] chore(deps): update dependency ubuntu to v24 (#230) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/.deploy.yml | 2 +- .github/workflows/analysis.yml | 8 ++++---- .github/workflows/merge.yml | 6 +++--- .github/workflows/pr-open.yml | 4 ++-- .github/workflows/pr-validate.yml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/.deploy.yml b/.github/workflows/.deploy.yml index 87527cb..08d80f9 100644 --- a/.github/workflows/.deploy.yml +++ b/.github/workflows/.deploy.yml @@ -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 diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index e61771d..c1ee1a8 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index f43c5fe..7ebafc3 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -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 @@ -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] @@ -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: diff --git a/.github/workflows/pr-open.yml b/.github/workflows/pr-open.yml index f14239c..be5b3fc 100644 --- a/.github/workflows/pr-open.yml +++ b/.github/workflows/pr-open.yml @@ -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] @@ -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 diff --git a/.github/workflows/pr-validate.yml b/.github/workflows/pr-validate.yml index be4a86f..46493aa 100644 --- a/.github/workflows/pr-validate.yml +++ b/.github/workflows/pr-validate.yml @@ -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!"