Use ubuntu-22.04, add erlang:26 container as that ubuntu doesn't include it
This commit is contained in:
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
otp: ['19.3', '25.3', 26, 27]
|
otp: ['19.3', '25.3', 26, 27]
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
container:
|
container:
|
||||||
image: erlang:${{ matrix.otp }}
|
image: erlang:${{ matrix.otp }}
|
||||||
steps:
|
steps:
|
||||||
@@ -23,7 +23,9 @@ jobs:
|
|||||||
cover:
|
cover:
|
||||||
name: Cover
|
name: Cover
|
||||||
needs: [tests]
|
needs: [tests]
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
|
container:
|
||||||
|
image: erlang:26
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- run: ./configure --enable-gcov
|
- run: ./configure --enable-gcov
|
||||||
|
|||||||
4
.github/workflows/hexpm-release.yml
vendored
4
.github/workflows/hexpm-release.yml
vendored
@@ -7,7 +7,9 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
|
container:
|
||||||
|
image: erlang:26
|
||||||
steps:
|
steps:
|
||||||
- name: Check out
|
- name: Check out
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|||||||
Reference in New Issue
Block a user