Skip to content

Commit 9f8f631

Browse files
authored
add Elixir 1.18 in CI (#3605)
1 parent de2600e commit 9f8f631

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/assets.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
build:
1111
runs-on: ubuntu-22.04
1212
env:
13-
elixir: 1.17.2
14-
otp: 27.0
13+
elixir: 1.18.1
14+
otp: 27.2
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
otp: 26.2
2424

2525
# update coverage report as well
26-
- elixir: 1.17.2
27-
otp: 27.0
26+
- elixir: 1.18.1
27+
otp: 27.2
2828
lint: lint
2929

3030
# run against latest Elixir to catch warnings early
@@ -97,8 +97,8 @@ jobs:
9797
strategy:
9898
matrix:
9999
include:
100-
- elixir: 1.17.2
101-
otp: 27.0
100+
- elixir: 1.18.1
101+
otp: 27.2
102102

103103
runs-on: ubuntu-latest
104104
steps:
@@ -156,8 +156,8 @@ jobs:
156156
strategy:
157157
matrix:
158158
include:
159-
- elixir: 1.17.2
160-
otp: 27.0
159+
- elixir: 1.18.1
160+
otp: 27.2
161161

162162
runs-on: ubuntu-latest
163163
container:
@@ -242,14 +242,14 @@ jobs:
242242
- name: Set up Elixir
243243
uses: erlef/setup-beam@v1
244244
with:
245-
elixir-version: 1.17.2
246-
otp-version: 27.0
245+
elixir-version: 1.18.1
246+
otp-version: 27.2
247247

248248
- name: Download mix unit coverage
249249
uses: actions/download-artifact@v4
250250
with:
251251
# This needs to be updated when changing the test matrix
252-
name: mix-test-coverage-27-1.17.2
252+
name: mix-test-coverage-27.2-1.18.1
253253
path: cover/
254254

255255
- name: Download mix e2e coverage
@@ -264,9 +264,9 @@ jobs:
264264
path: |
265265
deps
266266
_build
267-
key: deps-${{ runner.os }}-27-1.17.2-${{ hashFiles('**/mix.lock') }}
267+
key: deps-${{ runner.os }}-27.2-1.18.1-${{ hashFiles('**/mix.lock') }}
268268
restore-keys: |
269-
deps-${{ runner.os }}-27-1.17.2
269+
deps-${{ runner.os }}-27.2-1.18.1
270270
271271
- name: Generate mix coverage report
272272
run: mix test.coverage

0 commit comments

Comments
 (0)