Skip to content

Commit a76d741

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 64580b1 commit a76d741

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:
@@ -26,15 +26,15 @@ jobs:
2626
development: true
2727
- otp_release: maint
2828
development: true
29-
runs-on: ubuntu-18.04
29+
runs-on: ubuntu-20.04
3030
steps:
3131
- uses: actions/checkout@v3
3232
with:
3333
fetch-depth: 50
3434
- name: Install Erlang/OTP
3535
run: |
3636
cd $RUNNER_TEMP
37-
wget -O otp.tar.gz https://repo.hex.pm/builds/otp/ubuntu-18.04/${{ matrix.otp_release }}.tar.gz
37+
wget -O otp.tar.gz https://repo.hex.pm/builds/otp/ubuntu-20.04/${{ matrix.otp_release }}.tar.gz
3838
mkdir -p otp
3939
tar zxf otp.tar.gz -C otp --strip-components=1
4040
otp/Install -minimal $(pwd)/otp
@@ -107,7 +107,7 @@ jobs:
107107
108108
check_posix_compliant:
109109
name: Check POSIX-compliant
110-
runs-on: ubuntu-18.04
110+
runs-on: ubuntu-20.04
111111
steps:
112112
- uses: actions/checkout@v3
113113
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: write
17-
runs-on: ubuntu-18.04
17+
runs-on: ubuntu-20.04
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020
steps:

0 commit comments

Comments
 (0)