From d3baacd78eea597713e3a960537dc919dc085b04 Mon Sep 17 00:00:00 2001 From: Badlop Date: Tue, 12 Nov 2024 13:02:28 +0100 Subject: [PATCH] Workflows: Bump ubuntu from 22.04 to 24.04 when possible (#4281) --- .github/workflows/container.yml | 2 +- .github/workflows/installers.yml | 4 ++-- .github/workflows/runtime.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 33ae16960a6..40873eb60d9 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -19,7 +19,7 @@ env: jobs: container: name: Container - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 permissions: packages: write steps: diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index b820dd6d9e4..59db4a81e4c 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -21,7 +21,7 @@ on: jobs: binaries: name: Binaries - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Cache build directory uses: actions/cache@v4 @@ -70,7 +70,7 @@ jobs: release: name: Release needs: [binaries] - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: github.ref_type == 'tag' steps: - name: Download packages diff --git a/.github/workflows/runtime.yml b/.github/workflows/runtime.yml index f3d4a1ffd6e..90dac9751c8 100644 --- a/.github/workflows/runtime.yml +++ b/.github/workflows/runtime.yml @@ -36,7 +36,7 @@ jobs: exclude: - otp: '27' rebar: 'rebar' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 container: image: erlang:${{ matrix.otp }}