Skip to content

Commit

Permalink
Remove deprecated ubuntu-18 runner from CI
Browse files Browse the repository at this point in the history
Github deprecated ubuntu 18 runners, see actions/runner-images#6002
We have to run on ubuntu 20. However the setup-beam action only supports
OTP 20+ on ubuntu 20, so we update that too
  • Loading branch information
michalmuskala committed Jul 7, 2023
1 parent bba1dd3 commit fa3da60
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
matrix:
include:
- elixir: 1.4.x
otp: 18
os: ubuntu-18.04
otp: 20
os: ubuntu-20.04
- elixir: 1.5.x
otp: 18
os: ubuntu-18.04
otp: 20
os: ubuntu-20.04
- elixir: 1.6.x
otp: 19
os: ubuntu-18.04
otp: 20
os: ubuntu-20.04
- elixir: 1.7.x
otp: 19
os: ubuntu-18.04
otp: 20
os: ubuntu-20.04
- elixir: 1.8.x
otp: 20
os: ubuntu-20.04
Expand Down

0 comments on commit fa3da60

Please sign in to comment.