From 4bca93c61cef1f27a853d739c8986cc08a8095b9 Mon Sep 17 00:00:00 2001 From: Thomas Timmer Date: Wed, 5 Jun 2024 16:56:14 +0200 Subject: [PATCH] fix: update github actions --- .github/workflows/elixir.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 5351f63..7cb614c 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -12,13 +12,11 @@ jobs: name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} strategy: matrix: - otp: ["22.1", "23.3", "24.0"] - elixir: ["1.10.4", "1.11.4", "1.12.1"] - + otp: ["24.2", "25.3", "26.2"] + elixir: ["1.14.5", "1.15.6", "1.16.1"] steps: - - uses: actions/checkout@v2 - - name: Set up Elixir - uses: erlef/setup-beam@v1 + - uses: actions/checkout@v4 + - uses: erlef/setup-beam@v1 with: otp-version: ${{matrix.otp}} elixir-version: ${{matrix.elixir}} @@ -28,7 +26,5 @@ jobs: path: deps key: ${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }} restore-keys: ${{ matrix.otp }}-${{ matrix.elixir }}-mix- - - name: Install dependencies - run: mix deps.get - - name: Run tests - run: mix test + - run: mix deps.get + - run: mix test