From 9f735fcb69d8df650fa0f7a37b9f271b8f700596 Mon Sep 17 00:00:00 2001 From: Jan Pieper Date: Wed, 31 Jul 2024 09:02:11 +0200 Subject: [PATCH] Use Elixir versions 1.14 to 1.17 in CI --- .github/workflows/ci.yml | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60634d4..be2a0ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,30 +14,28 @@ jobs: strategy: matrix: include: - - elixir: '1.8' - otp: '20' - - elixir: '1.8' - otp: '21' - - elixir: '1.9' - otp: '21' - - elixir: '1.9' - otp: '22' - - elixir: '1.10' - otp: '21.0' - - elixir: '1.10' - otp: '22.0' - - elixir: '1.11' - otp: '23.0' + - elixir: '1.14' + otp: '25.0' + - elixir: '1.15' + otp: '25.0' + - elixir: '1.15' + otp: '26.0' + - elixir: '1.16' + otp: '26.0' + - elixir: '1.17' + otp: '26.0' + - elixir: '1.17' + otp: '27.0' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: erlef/setup-beam@v1 with: otp-version: ${{matrix.otp}} elixir-version: ${{matrix.elixir}} - name: Restore dependencies cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: deps key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}