Skip to content

Commit 8e66824

Browse files
committed
Add Elixir 1.19.2
1 parent 196a88a commit 8e66824

14 files changed

Lines changed: 70 additions & 64 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with GitHubActions version 0.3.10
1+
# Created with GitHubActions version 0.3.11
22
name: CI
33
env:
44
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -12,13 +12,13 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- elixir: '1.19.1'
15+
- elixir: '1.19.2'
1616
otp: '28.1'
1717
coverage: true
1818
lint: true
19-
- elixir: '1.19.1'
19+
- elixir: '1.19.2'
2020
otp: '27.3'
21-
- elixir: '1.19.1'
21+
- elixir: '1.19.2'
2222
otp: '26.2'
2323
- elixir: '1.18.4'
2424
otp: '25.3'

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.3.10 2025/11/02
4+
5+
- Add Elixir version `1.19.2` to config
6+
37
## 0.3.10 2025/10/29
48

59
- Fix typos

lib/git_hub_actions/versions.ex

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ defmodule GitHubActions.Versions do
6060
** (ArgumentError) latest/1 expected a list or table of versions or a key, got: [a: "1"]
6161
6262
iex> Versions.latest(:elixir)
63-
%GitHubActions.Version{major: 1, minor: 19, patch: 1}
63+
%GitHubActions.Version{major: 1, minor: 19, patch: 2}
6464
6565
iex> Versions.latest(:otp)
6666
%GitHubActions.Version{major: 28, minor: 1}
@@ -147,7 +147,7 @@ defmodule GitHubActions.Versions do
147147
iex> Versions.latest_minor(:elixir) |> Enum.map(&to_string/1)
148148
["1.0.5", "1.1.1", "1.2.6", "1.3.4", "1.4.5", "1.5.3", "1.6.6", "1.7.4",
149149
"1.8.2", "1.9.4", "1.10.4", "1.11.4", "1.12.3", "1.13.4", "1.14.5",
150-
"1.15.8", "1.16.3", "1.17.3", "1.18.4", "1.19.1"]
150+
"1.15.8", "1.16.3", "1.17.3", "1.18.4", "1.19.2"]
151151
152152
iex> Versions.latest_minor(:otp) |> Enum.map(&to_string/1)
153153
["17.0", "17.1", "17.2", "17.3", "17.4", "17.5", "18.0", "18.1", "18.2",
@@ -239,7 +239,7 @@ defmodule GitHubActions.Versions do
239239
** (ArgumentError) latest_major/1 expected a list or table of versions or a key, got: [a: "1"]
240240
241241
iex> Versions.latest_major(:elixir) |> Enum.map(&to_string/1)
242-
["1.19.1"]
242+
["1.19.2"]
243243
244244
iex> Versions.latest_major(:otp) |> Enum.map(&to_string/1)
245245
["17.5", "18.3", "19.3", "20.3", "21.3", "22.3", "23.3", "24.3", "25.3", "26.2", "27.3", "28.1"]
@@ -736,7 +736,7 @@ defmodule GitHubActions.Versions do
736736
737737
iex> matrix = Versions.matrix(elixir: ">= 1.12.0", otp: ">= 22.0.0")
738738
iex> Enum.map(matrix[:elixir], &to_string/1)
739-
["1.12.3", "1.13.4", "1.14.5", "1.15.8", "1.16.3", "1.17.3", "1.18.4", "1.19.1"]
739+
["1.12.3", "1.13.4", "1.14.5", "1.15.8", "1.16.3", "1.17.3", "1.18.4", "1.19.2"]
740740
iex> Enum.map(matrix[:otp], &to_string/1)
741741
["22.3", "23.3", "24.3", "25.3", "26.2", "27.3", "28.1"]
742742
iex> for [{k1, v1}, {k2, v2}] <- matrix[:exclude] do
@@ -768,10 +768,10 @@ defmodule GitHubActions.Versions do
768768
[elixir: "1.18.4", otp: "22.3"],
769769
[elixir: "1.18.4", otp: "23.3"],
770770
[elixir: "1.18.4", otp: "24.3"],
771-
[elixir: "1.19.1", otp: "22.3"],
772-
[elixir: "1.19.1", otp: "23.3"],
773-
[elixir: "1.19.1", otp: "24.3"],
774-
[elixir: "1.19.1", otp: "25.3"]
771+
[elixir: "1.19.2", otp: "22.3"],
772+
[elixir: "1.19.2", otp: "23.3"],
773+
[elixir: "1.19.2", otp: "24.3"],
774+
[elixir: "1.19.2", otp: "25.3"]
775775
]
776776
777777
iex> matrix = Versions.matrix(

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule GitHubActions.MixProject do
22
use Mix.Project
33

44
@source_url "https://github.com/hrzndhrn/git_hub_actions"
5-
@version "0.3.10"
5+
@version "0.3.11"
66

77
def project do
88
[

priv/config.exs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,22 +140,22 @@ config versions: [
140140
"1.16.0/3",
141141
"1.17.0/3",
142142
"1.18.0/4",
143-
"1.19.0/1"
143+
"1.19.0/2"
144144
]
145145
],
146146
[
147147
otp: ["27.0/3"],
148148
elixir: [
149149
"1.17.0/3",
150150
"1.18.0/4",
151-
"1.19.0/1"
151+
"1.19.0/2"
152152
]
153153
],
154154
[
155155
otp: ["28.0/1"],
156156
elixir: [
157157
"1.18.4",
158-
"1.19.0/1"
158+
"1.19.0/2"
159159
]
160160
]
161161
]

test/fixtures/default.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with GitHubActions version 0.3.10
1+
# Created with GitHubActions version 0.3.11
22
name: CI
33
env:
44
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -12,13 +12,13 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- elixir: '1.19.1'
15+
- elixir: '1.19.2'
1616
otp: '28.1'
1717
coverage: true
1818
lint: true
19-
- elixir: '1.19.1'
19+
- elixir: '1.19.2'
2020
otp: '27.3'
21-
- elixir: '1.19.1'
21+
- elixir: '1.19.2'
2222
otp: '26.2'
2323
- elixir: '1.18.4'
2424
otp: '25.3'

test/fixtures/global_default.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with GitHubActions version 0.3.10
1+
# Created with GitHubActions version 0.3.11
22
name: CI
33
env:
44
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -12,13 +12,13 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- elixir: '1.19.1'
15+
- elixir: '1.19.2'
1616
otp: '28.1'
1717
coverage: true
1818
lint: true
19-
- elixir: '1.19.1'
19+
- elixir: '1.19.2'
2020
otp: '27.3'
21-
- elixir: '1.19.1'
21+
- elixir: '1.19.2'
2222
otp: '26.2'
2323
- elixir: '1.18.4'
2424
otp: '25.3'

test/fixtures/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id: setup-beam
1616
uses: erlef/setup-beam@v1
1717
with:
18-
elixir-version: '1.19.1'
18+
elixir-version: '1.19.2'
1919
otp-version: '28.1'
2020
- name: Install hex
2121
run: mix local.hex --force

test/fixtures/no_comment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
strategy:
1212
matrix:
1313
include:
14-
- elixir: '1.19.1'
14+
- elixir: '1.19.2'
1515
otp: '28.1'
1616
coverage: true
1717
lint: true
18-
- elixir: '1.19.1'
18+
- elixir: '1.19.2'
1919
otp: '27.3'
20-
- elixir: '1.19.1'
20+
- elixir: '1.19.2'
2121
otp: '26.2'
2222
- elixir: '1.18.4'
2323
otp: '25.3'

test/fixtures/opt_output.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with GitHubActions version 0.3.10
1+
# Created with GitHubActions version 0.3.11
22
name: CI
33
env:
44
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -12,13 +12,13 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- elixir: '1.19.1'
15+
- elixir: '1.19.2'
1616
otp: '28.1'
1717
coverage: true
1818
lint: true
19-
- elixir: '1.19.1'
19+
- elixir: '1.19.2'
2020
otp: '27.3'
21-
- elixir: '1.19.1'
21+
- elixir: '1.19.2'
2222
otp: '26.2'
2323
- elixir: '1.18.4'
2424
otp: '25.3'

0 commit comments

Comments
 (0)