@@ -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(
0 commit comments