Skip to content

Commit 0bdad97

Browse files
authored
Merge pull request #209 from kianmeng/support-elixir-1.18-in-ci
Support Elixir 1.18 in CI
2 parents 6ea34bf + cd5bea0 commit 0bdad97

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
elixir: "1.12"
1919
otp: "22"
2020
- pair:
21-
elixir: "1.17"
21+
elixir: "1.18"
2222
otp: "27"
2323
lint: true
2424

@@ -33,7 +33,7 @@ jobs:
3333
otp-version: ${{ matrix.pair.otp }}
3434

3535
- name: Restore deps cache
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: |
3939
deps

test/support/star_wars/database.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ defmodule StarWars.Database do
8383
end
8484

8585
def get_factions(names) do
86-
factions = data().factions |> Map.values()
86+
factions = data().faction |> Map.values()
8787

8888
names
8989
|> Enum.map(fn name ->

0 commit comments

Comments
 (0)