From eca4223152d31326cee44265b1f108fb37aea25c Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Wed, 2 Feb 2022 17:21:48 +0800 Subject: [PATCH] Update GitHub Action Switch from setup-elixir/@v1 to setup-beam/@v1. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e215673..8b8fb37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,12 +11,12 @@ jobs: name: mix test (OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}}) strategy: matrix: - otp: [21.x, 22.x] - elixir: [1.8.x, 1.9.x, 1.10.x] + otp: [21.x, 22.x, 23.x, 24.x] + elixir: [1.8.x, 1.9.x, 1.10.x, 1.11.x, 1.12.x, 1.13.x] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-elixir@v1 + - uses: actions/setup-beam@v1 with: otp-version: ${{matrix.otp}} elixir-version: ${{matrix.elixir}}