From 2cce22869d2cf65ff601f2440c85a20075cf3ff8 Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 26 Feb 2024 09:16:53 +0100 Subject: [PATCH] Use ubuntu-22.04, add erlang:26 container as that ubuntu doesn't include it --- .github/workflows/ci.yml | 6 ++++-- .github/workflows/hexpm-release.yml | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f63e3bf..8968841 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: otp: ['19.3', '25.3', 26, 27] - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 container: image: erlang:${{ matrix.otp }} steps: @@ -23,7 +23,9 @@ jobs: cover: name: Cover needs: [tests] - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 + container: + image: erlang:26 steps: - uses: actions/checkout@v2 - run: ./configure --enable-gcov diff --git a/.github/workflows/hexpm-release.yml b/.github/workflows/hexpm-release.yml index 8a17b05..6ae7bde 100644 --- a/.github/workflows/hexpm-release.yml +++ b/.github/workflows/hexpm-release.yml @@ -7,7 +7,9 @@ on: jobs: release: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 + container: + image: erlang:26 steps: - name: Check out uses: actions/checkout@v2