From eaf25ce2a7d68ccf037f3e713c9319c8a2620834 Mon Sep 17 00:00:00 2001 From: Sergio Arbeo Date: Thu, 31 Oct 2024 01:10:37 +0100 Subject: [PATCH 1/5] Update elixir-ci.yml --- .github/workflows/elixir-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/elixir-ci.yml b/.github/workflows/elixir-ci.yml index 65f01cf..2fbbe5e 100644 --- a/.github/workflows/elixir-ci.yml +++ b/.github/workflows/elixir-ci.yml @@ -13,8 +13,8 @@ jobs: strategy: matrix: - elixir: [1.14.5, 1.15.6] - otp: [25.0, 26.0] + elixir: [1.16.3, 1.17.3] + otp: [26.0, 27.0] phoenix-live-view-version: [0.19.0, 0.20.0] phoenix-version: [1.7.0] From 900041154f6b1554c422cbdee79c46545fd0f994 Mon Sep 17 00:00:00 2001 From: Sergio Arbeo Date: Thu, 31 Oct 2024 01:15:47 +0100 Subject: [PATCH 2/5] Update action.yml --- .github/actions/setup-elixir/action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/setup-elixir/action.yml b/.github/actions/setup-elixir/action.yml index eb29b90..f050011 100644 --- a/.github/actions/setup-elixir/action.yml +++ b/.github/actions/setup-elixir/action.yml @@ -24,8 +24,7 @@ runs: steps: - uses: actions/checkout@v2 - name: Set up Elixir - uses: erlef/setup-beam@988e02bfe678367a02564f65ca2e37726dc0268f - with: + uses: erlef/setup-beam@v1 elixir-version: "${{ inputs.elixir-version }}" otp-version: "${{ inputs.otp-version }}" - name: Restore mix deps cache From eb41d497b970eb2011df578b9cb90b8655033b7a Mon Sep 17 00:00:00 2001 From: Sergio Arbeo Date: Thu, 31 Oct 2024 01:18:15 +0100 Subject: [PATCH 3/5] Update action.yml --- .github/actions/setup-elixir/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-elixir/action.yml b/.github/actions/setup-elixir/action.yml index f050011..7dc8f13 100644 --- a/.github/actions/setup-elixir/action.yml +++ b/.github/actions/setup-elixir/action.yml @@ -25,6 +25,7 @@ runs: - uses: actions/checkout@v2 - name: Set up Elixir uses: erlef/setup-beam@v1 + with: elixir-version: "${{ inputs.elixir-version }}" otp-version: "${{ inputs.otp-version }}" - name: Restore mix deps cache From f850f8ef1e1b2315843a64033fe1e4d727935e67 Mon Sep 17 00:00:00 2001 From: Sergio Arbeo Date: Thu, 31 Oct 2024 01:20:27 +0100 Subject: [PATCH 4/5] Update elixir-ci.yml --- .github/workflows/elixir-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/elixir-ci.yml b/.github/workflows/elixir-ci.yml index 2fbbe5e..fd5e8a2 100644 --- a/.github/workflows/elixir-ci.yml +++ b/.github/workflows/elixir-ci.yml @@ -13,8 +13,8 @@ jobs: strategy: matrix: - elixir: [1.16.3, 1.17.3] - otp: [26.0, 27.0] + elixir: [1.17.3] + otp: [27.0] phoenix-live-view-version: [0.19.0, 0.20.0] phoenix-version: [1.7.0] From 08ec7f8ff4efd10c6cb48c3a09c06eb50f1ae330 Mon Sep 17 00:00:00 2001 From: Sergio Arbeo Date: Thu, 31 Oct 2024 01:28:09 +0100 Subject: [PATCH 5/5] Update elixir-ci.yml --- .github/workflows/elixir-ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/elixir-ci.yml b/.github/workflows/elixir-ci.yml index fd5e8a2..454b2bc 100644 --- a/.github/workflows/elixir-ci.yml +++ b/.github/workflows/elixir-ci.yml @@ -13,10 +13,16 @@ jobs: strategy: matrix: - elixir: [1.17.3] - otp: [27.0] + platform: [elixir-1.16-otp-26, elixir-1.17-otp-27] phoenix-live-view-version: [0.19.0, 0.20.0] phoenix-version: [1.7.0] + include: + - otp: 26 + elixir: 1.16 + platform: elixir-1.16-otp-26 + - otp: 27 + elixir: 1.17 + platform: elixir-1.17-otp-27 env: PHOENIX_VERSION: ${{matrix.phoenix-version}}