Skip to content

Commit 8f95bc7

Browse files
authored
Bump Elixir requirement to ~> 1.14 (#470)
1 parent 02abd6e commit 8f95bc7

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
test:
1111
name: Test (Elixir ${{ matrix.elixir }}, OTP ${{ matrix.erlang }})
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313
strategy:
1414
fail-fast: false
1515
matrix:
@@ -19,10 +19,8 @@ jobs:
1919
lint: true
2020
coverage: true
2121
dialyzer: true
22-
- erlang: "24.3"
23-
elixir: "1.12"
24-
- erlang: "23.3.1"
25-
elixir: "1.12"
22+
- erlang: "24.3" # We technically support OTP 23 but hard to test in CI
23+
elixir: "1.14"
2624
dialyzer: true
2725
env:
2826
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ defmodule Mint.MixProject do
88
[
99
app: :mint,
1010
version: @version,
11-
elixir: "~> 1.12",
11+
elixir: "~> 1.14",
1212
start_permanent: Mix.env() == :prod,
1313
elixirc_paths: elixirc_paths(Mix.env()),
1414
deps: deps(),

0 commit comments

Comments
 (0)