From 0aa5d76d43aa802b9378bfcb9433f394213bb0e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 20:18:54 +0000 Subject: [PATCH] chore(deps): update dependency ubuntu to v24 --- .github/workflows/build.yaml | 6 +++--- .github/workflows/check.yaml | 2 +- .github/workflows/ci.yaml | 16 ++++++++-------- .github/workflows/docs.yaml | 4 ++-- .github/workflows/linkcheck.yaml | 2 +- .github/workflows/report.yaml | 2 +- .github/workflows/test.yaml | 8 ++++---- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3ba3ea68a7..d8e07c2517 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -31,7 +31,7 @@ concurrency: jobs: static: name: Nix - Linux static - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup Nix Environment @@ -159,7 +159,7 @@ jobs: freebsd: name: Stack - FreeBSD from CirrusCI - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - uses: ./.github/actions/artifact-from-cirrus @@ -176,7 +176,7 @@ jobs: ghc: ['9.6.4', '9.8.2'] fail-fast: false name: Cabal - Linux GHC ${{ matrix.ghc }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - uses: haskell-actions/setup@dd344bc1cec854a369df8814ce17ef337d6e6170 # v2.7.6 diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index eb705e454e..b6537db297 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -18,7 +18,7 @@ concurrency: jobs: lint-style: name: Lint & Style - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup Nix Environment diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bdc62ea838..91350aaae5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -52,7 +52,7 @@ jobs: arm: name: Build / Cabal - aarch64 GHC 9.4.8 if: vars.SSH_ARM_ENABLED - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 outputs: remotepath: ${{ steps.Remote-Dir.outputs.remotepath }} env: @@ -122,7 +122,7 @@ jobs: (needs.arm.result == 'skipped' || success()) permissions: contents: write - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - docs - test @@ -155,7 +155,7 @@ jobs: startsWith(github.ref, 'refs/tags/') && needs.build.result == 'success' && (needs.arm.result == 'skipped' || success()) - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - build - arm @@ -194,7 +194,7 @@ jobs: name: Release / GitHub permissions: contents: write - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - prepare if: success() || needs.prepare.result == 'success' @@ -262,7 +262,7 @@ jobs: docker: name: Release / Docker Hub - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - prepare if: | @@ -298,7 +298,7 @@ jobs: docker-description: name: Release / Docker Hub Description - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: | vars.DOCKER_REPO && vars.DOCKER_USER && github.ref == 'refs/tags/devel' @@ -315,7 +315,7 @@ jobs: docker-arm: name: Release / Docker Hub Arm - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - arm - docker @@ -346,7 +346,7 @@ jobs: - arm - docker-arm if: ${{ always() && vars.SSH_ARM_ENABLED }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: REMOTE_DIR: ${{ needs.arm.outputs.remotepath }} steps: diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index d724db0312..0fe22c22e5 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -25,7 +25,7 @@ concurrency: jobs: build: name: Build - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup Nix Environment @@ -39,7 +39,7 @@ jobs: spellcheck: name: Spellcheck - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup Nix Environment diff --git a/.github/workflows/linkcheck.yaml b/.github/workflows/linkcheck.yaml index 901a18cfa1..73c588d385 100644 --- a/.github/workflows/linkcheck.yaml +++ b/.github/workflows/linkcheck.yaml @@ -6,7 +6,7 @@ on: jobs: linkcheck: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup Nix Environment diff --git a/.github/workflows/report.yaml b/.github/workflows/report.yaml index 1790bf6c26..418f3af463 100644 --- a/.github/workflows/report.yaml +++ b/.github/workflows/report.yaml @@ -17,7 +17,7 @@ jobs: name: Loadtest permissions: checks: write - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure' steps: - name: Download from Artifacts diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e5ccf86976..159b56ee14 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -32,7 +32,7 @@ concurrency: jobs: coverage: name: Coverage - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 defaults: run: # Hack for enabling color output, see: @@ -69,7 +69,7 @@ jobs: matrix: pgVersion: [12, 13, 14, 15, 16] name: PG ${{ matrix.pgVersion }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 defaults: run: # Hack for enabling color output, see: @@ -98,7 +98,7 @@ jobs: memory: name: Memory - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup Nix Environment @@ -112,7 +112,7 @@ jobs: loadtest: name: Loadtest - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: