From d9cb1a6ea61ca4d761c0c90d9282a332c0ed6a06 Mon Sep 17 00:00:00 2001 From: Rodney Norris Date: Wed, 27 Aug 2025 16:17:52 -0500 Subject: [PATCH 1/2] Update Elixir and OTP versions in workflow --- .github/workflows/elixir.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 0cba504..48542da 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -16,18 +16,18 @@ jobs: # Specify the OTP and Elixir versions to use when building # and running the workflow steps. matrix: - otp: ['25.0.4', '26.0.1'] # Define the OTP version [required] - elixir: ['1.14.5', '1.15.0'] # Define the elixir version [required] + otp: ['25.3.2', '28.0.2'] # Define the OTP version [required] + elixir: ['1.14.5', '1.18.4'] # Define the elixir version [required] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Elixir 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') }} From 7a6a67baa6069de7c27b1c4f799d86b9f7eb48eb Mon Sep 17 00:00:00 2001 From: Rodney Norris Date: Wed, 27 Aug 2025 16:20:59 -0500 Subject: [PATCH 2/2] Update OTP version in Elixir workflow --- .github/workflows/elixir.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 48542da..c537b57 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -16,7 +16,7 @@ jobs: # Specify the OTP and Elixir versions to use when building # and running the workflow steps. matrix: - otp: ['25.3.2', '28.0.2'] # Define the OTP version [required] + otp: ['25.3.2', '26.2.5'] # Define the OTP version [required] elixir: ['1.14.5', '1.18.4'] # Define the elixir version [required] steps: