Skip to content

Commit

Permalink
Support Elixir 1.18 in GitHub CI
Browse files Browse the repository at this point in the history
Additional changes:
- bump GitHub Actions
- specify versions as strings, not numbers
- use major versions which resolves to latest version
  • Loading branch information
kianmeng committed Feb 4, 2025
1 parent e20b0b3 commit b5f85e1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit b5f85e1

Please sign in to comment.