From b5f85e1dc7ce9d5c47fdde142dcbf73678c400c8 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Tue, 4 Feb 2025 11:01:29 +0800 Subject: [PATCH] Support Elixir 1.18 in GitHub CI Additional changes: - bump GitHub Actions - specify versions as strings, not numbers - use major versions which resolves to latest version --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb7cc62..2da7e28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,11 +16,11 @@ jobs: matrix: include: - pair: - elixir: 1.12.3 - otp: 22.3 + elixir: "1.12" + otp: "22" - pair: - elixir: 1.17.1 - otp: 27.0 + elixir: "1.18" + otp: "27" lint: lint steps: - uses: actions/checkout@v4 @@ -30,7 +30,7 @@ jobs: otp-version: ${{matrix.pair.otp}} elixir-version: ${{matrix.pair.elixir}} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | deps