app.softwork.kotlin.actions.Using.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of action-json Show documentation
Show all versions of action-json Show documentation
Write GitHub Actions in Kotlin
package app.softwork.kotlin.actions
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
// https://nodejs.org/en/about/previous-releases
@Serializable
public enum class Using(public val version: String) {
@SerialName("node12")
Node12("12.22.12"),
@SerialName("node16")
Node16("16.20.2"),
@SerialName("node20")
Node20("20.12.2"),
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy