File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
actions/julia-actions/setup-julia/v2
github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/juliaactions Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1- f2258781c657ad9b4b88072c5eeaf9ec8c370874
1+ 780022b48dfc0c2c6b94cfee6a9284850107d037
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ import kotlin.collections.toTypedArray
2626 *
2727 * [Action on GitHub](https://github.com/julia-actions/setup-julia)
2828 *
29- * @param version The Julia version to download (if necessary) and use. Example: 1.0.4
29+ * @param version The Julia version to download (if necessary) and use. Use a string input to avoid
30+ * unwanted decimal conversion e.g. 1.10 without quotes will be interpreted as 1.1. Examples: "1",
31+ * "1.10", "lts", "pre"
3032 * @param includeAllPrereleases Include prereleases when matching the Julia version to available
3133 * versions.
3234 * @param arch Architecture of the Julia binaries. Defaults to the architecture of the runner
@@ -39,7 +41,9 @@ import kotlin.collections.toTypedArray
3941 */
4042public data class SetupJuliaV2 private constructor(
4143 /* *
42- * The Julia version to download (if necessary) and use. Example: 1.0.4
44+ * The Julia version to download (if necessary) and use. Use a string input to avoid unwanted
45+ * decimal conversion e.g. 1.10 without quotes will be interpreted as 1.1. Examples: "1", "1.10",
46+ * "lts", "pre"
4347 */
4448 public val version : String? = null ,
4549 /* *
You can’t perform that action at this time.
0 commit comments