From fa3da60b90b69cfdcdeec12e919c31eaf7f054e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Muska=C5=82a?= Date: Fri, 7 Jul 2023 10:09:40 +0100 Subject: [PATCH] Remove deprecated ubuntu-18 runner from CI Github deprecated ubuntu 18 runners, see https://github.com/actions/runner-images/issues/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 --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0277c62..a538ea2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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