Skip to content

Commit 0f41710

Browse files
dkukuclaude
andcommitted
fix: replace retired ubuntu-20.04 CI runner image
Jobs queued until GitHub cancelled them at the 24h limit, so CI has not run since the image was retired. OTP 22 is not available on newer images, so the minimum pair moves to Elixir 1.15/OTP 24. Elixir 1.20/OTP 29 is added as the newest pair and takes over the lint steps. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 4abe35a commit 0f41710

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,22 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-24.04
1212
env:
1313
MIX_ENV: test
1414
strategy:
1515
fail-fast: false
1616
matrix:
1717
include:
1818
- pair:
19-
elixir: "1.12"
20-
otp: "22"
19+
elixir: "1.15"
20+
otp: "24"
2121
- pair:
2222
elixir: "1.18"
2323
otp: "27"
24+
- pair:
25+
elixir: "1.20"
26+
otp: "29"
2427
lint: lint
2528
steps:
2629
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)