Skip to content

Commit 5e440b8

Browse files
committed
Bump ubuntu to 20.04
The ubuntu-18.04 nows deprecated today [1]. This changes start moving it to version 20.04 instead. [1] actions/runner-images#6002.
1 parent b859094 commit 5e440b8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
test_linux:
16-
name: Linux, ${{ matrix.otp_release }}, Ubuntu 18.04
16+
name: Linux, ${{ matrix.otp_release }}, Ubuntu 20.04
1717
strategy:
1818
fail-fast: false
1919
matrix:
@@ -28,15 +28,15 @@ jobs:
2828
development: true
2929
- otp_release: maint
3030
development: true
31-
runs-on: ubuntu-18.04
31+
runs-on: ubuntu-20.04
3232
steps:
3333
- uses: actions/checkout@v3
3434
with:
3535
fetch-depth: 50
3636
- name: Install Erlang/OTP
3737
run: |
3838
cd $RUNNER_TEMP
39-
wget -O otp.tar.gz https://repo.hex.pm/builds/otp/ubuntu-18.04/${{ matrix.otp_release }}.tar.gz
39+
wget -O otp.tar.gz https://repo.hex.pm/builds/otp/ubuntu-20.04/${{ matrix.otp_release }}.tar.gz
4040
mkdir -p otp
4141
tar zxf otp.tar.gz -C otp --strip-components=1
4242
otp/Install -minimal $(pwd)/otp
@@ -113,7 +113,7 @@ jobs:
113113
114114
check_posix_compliant:
115115
name: Check POSIX-compliant
116-
runs-on: ubuntu-18.04
116+
runs-on: ubuntu-20.04
117117
steps:
118118
- uses: actions/checkout@v3
119119
with:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
create_draft_release:
1515
permissions:
1616
contents: none
17-
runs-on: ubuntu-18.04
17+
runs-on: ubuntu-22.04
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020
steps:

0 commit comments

Comments
 (0)