From be86cab1e474270e2d2dc1b398f6298d2f86f80c Mon Sep 17 00:00:00 2001 From: Matteo Cafasso Date: Fri, 26 Jan 2024 23:18:00 +0200 Subject: [PATCH] actions: adopt Ubuntu 22.04, remove ESL repository Signed-off-by: Matteo Cafasso --- .github/workflows/action.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 5e47b26..0b7238a 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -2,23 +2,17 @@ name: build on: [push, pull_request] jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: - erlang: - - 1:25.3-1 - elixir: - - 1.13.4-1 rmqref: - v3.12.x steps: - uses: actions/checkout@v2 - name: Install Erlang and Elixir run: | - wget https://packages.erlang-solutions.com/erlang-solutions_2.0_all.deb - sudo dpkg -i erlang-solutions_2.0_all.deb sudo apt update - sudo apt install -y --allow-downgrades esl-erlang=${{ matrix.erlang }} elixir=${{ matrix.elixir }} + sudo apt install -y erlang elixir - name: Run tests run: | make current_rmq_ref=${{ matrix.rmqref }}