From 2b911385c2d3587164e5671b0865d15c16d9f6bc Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Sat, 25 Oct 2025 17:52:48 +0800 Subject: [PATCH] CI housekeeping Support Elixir 1.19 and OTP 28, bump actions/checkout, and set minimum Elixir requirements to 1.14 to tally with CI. --- .github/workflows/ci.yml | 8 ++++---- mix.exs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5c5a69..ab15e0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,16 +16,16 @@ jobs: matrix: include: - elixir: "1.14" - otp: "24.2" + otp: "24" os: ubuntu-22.04 - - elixir: "1.17" - otp: "27.0" + - elixir: "1.19" + otp: "28" lint: lint os: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: erlef/setup-beam@v1 with: diff --git a/mix.exs b/mix.exs index acb96d9..44b3070 100644 --- a/mix.exs +++ b/mix.exs @@ -9,7 +9,7 @@ defmodule Plug.Crypto.MixProject do [ app: :plug_crypto, version: @version, - elixir: "~> 1.11", + elixir: "~> 1.14", start_permanent: Mix.env() == :prod, deps: deps(), package: package(),