Skip to content

Commit a4a11f6

Browse files
committed
Update versions
1 parent 69c104b commit a4a11f6

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

main.jl

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ all_existing_versions = [
1919
v"1.7.3",
2020
v"1.8.5",
2121
v"1.9.4",
22-
v"1.10.5",
23-
v"1.11.0"
22+
v"1.10.7",
23+
v"1.11.2"
2424
]
2525

2626
all_compatible_versions = filter(i -> i in version_spec, all_existing_versions)
2727

2828
if ENV["INCLUDE_RELEASE_VERSIONS"] == "true"
29-
push!(versions, v"1.11.0")
29+
push!(versions, v"1.11.2")
3030
end
3131

3232
if ENV["INCLUDE_LTS_VERSIONS"] == "true"
33-
push!(versions, v"1.10.5")
33+
push!(versions, v"1.10.7")
3434
end
3535

3636
if ENV["INCLUDE_ALL_COMPATIBLE_MINOR_VERSIONS"] == "true"
@@ -64,10 +64,8 @@ function add_matrix_entries!(results, v)
6464
end
6565

6666
if ENV["INCLUDE_MACOS_X64"] == "true"
67-
if v==v"1.4.2"
68-
# For some reason Julia 1.4 doesn't work on macos-13, so we downgrade to macos-12
69-
push!(results, Dict("os" => "macos-12", "juliaup-channel" => "$v~x64"))
70-
else
67+
# There is currently no known way to run Julia 1.4 on a Mac GitHub runner, so we skip
68+
if v != v"1.4.2"
7169
push!(results, Dict("os" => "macos-13", "juliaup-channel" => "$v~x64"))
7270
end
7371
end

0 commit comments

Comments
 (0)