Skip to content

Commit d2daedb

Browse files
feat(actions): update julia-actions/setup-julia@v2 (#1544)
Created automatically. Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 492da4d commit d2daedb

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

2 files changed

+7
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f2258781c657ad9b4b88072c5eeaf9ec8c370874
1+
780022b48dfc0c2c6b94cfee6a9284850107d037

github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/juliaactions/SetupJuliaV2.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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
*/
4042
public 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
/**

0 commit comments

Comments
 (0)