diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 0cba504..c537b57 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', '26.2.5'] # 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') }}