Use ubuntu-22.04, add erlang:26 container as that ubuntu doesn't include it

This commit is contained in:
Badlop
2024-02-26 09:16:53 +01:00
parent 61294ce48d
commit 2cce22869d
2 changed files with 7 additions and 3 deletions

View File

@@ -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

View File

@@ -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