Skip to content

Commit c326c3c

Browse files
authored
CI housekeeping (#50)
Support Elixir 1.19 and OTP 28, bump actions/checkout, and set minimum Elixir requirements to 1.14 to tally with CI.
1 parent 56ed6db commit c326c3c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
matrix:
1717
include:
1818
- elixir: "1.14"
19-
otp: "24.2"
19+
otp: "24"
2020
os: ubuntu-22.04
2121

22-
- elixir: "1.17"
23-
otp: "27.0"
22+
- elixir: "1.19"
23+
otp: "28"
2424
lint: lint
2525
os: ubuntu-latest
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929

3030
- uses: erlef/setup-beam@v1
3131
with:

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule Plug.Crypto.MixProject do
99
[
1010
app: :plug_crypto,
1111
version: @version,
12-
elixir: "~> 1.11",
12+
elixir: "~> 1.14",
1313
start_permanent: Mix.env() == :prod,
1414
deps: deps(),
1515
package: package(),

0 commit comments

Comments
 (0)