Skip to content

Commit 29067a0

Browse files
wingyplusjosevalim
authored andcommitted
Bump ubuntu to 20.04 (#12062)
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 ce8f0ac commit 29067a0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
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/notify.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ permissions:
1010

1111
jobs:
1212
notify:
13-
runs-on: ubuntu-18.04
13+
runs-on: ubuntu-20.04
1414
name: Notify
1515
steps:
1616
- uses: actions/checkout@v3
1717
with:
1818
fetch-depth: 50
1919
- uses: erlef/setup-beam@v1
2020
with:
21-
otp-version: 24.3
22-
elixir-version: 1.13.4
21+
otp-version: '25.0'
22+
elixir-version: '1.14.0'
2323
- name: Run Elixir script
2424
env:
2525
ELIXIR_FORUM_TOKEN: ${{ secrets.ELIXIR_FORUM_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
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)