diff --git a/.github/workflows/branches-and-prs.main.kts b/.github/workflows/branches-and-prs.main.kts index c46821fe74..f93687d8f7 100755 --- a/.github/workflows/branches-and-prs.main.kts +++ b/.github/workflows/branches-and-prs.main.kts @@ -29,7 +29,7 @@ import io.github.typesafegithub.workflows.actions.actions.Checkout import io.github.typesafegithub.workflows.actions.actions.Checkout.FetchDepth -import io.github.typesafegithub.workflows.actions.codecov.CodecovAction_Untyped +import io.github.typesafegithub.workflows.actions.codecov.CodecovAction import io.github.typesafegithub.workflows.actions.testlensapp.SetupTestlens import io.github.typesafegithub.workflows.domain.Concurrency import io.github.typesafegithub.workflows.domain.RunnerType @@ -134,8 +134,8 @@ workflow( ) uses( name = "Upload to Codecov.io", - action = CodecovAction_Untyped( - failCiIfError_Untyped = "true" + action = CodecovAction( + failCiIfError = true ) ) } diff --git a/.github/workflows/codeql-analysis.main.kts b/.github/workflows/codeql-analysis.main.kts index 0777f0af73..0ae80d559f 100755 --- a/.github/workflows/codeql-analysis.main.kts +++ b/.github/workflows/codeql-analysis.main.kts @@ -24,12 +24,12 @@ @file:Repository("https://bindings.krzeminski.it/") @file:DependsOn("actions:checkout___major:[v6,v7-alpha)") -@file:DependsOn("github:codeql-action__analyze___major:[v4.32.4,v5-alpha)") -@file:DependsOn("github:codeql-action__init___major:[v4.32.4,v5-alpha)") +@file:DependsOn("github:codeql-action__analyze___major:[v4,v5-alpha)") +@file:DependsOn("github:codeql-action__init___major:[v4,v5-alpha)") import io.github.typesafegithub.workflows.actions.actions.Checkout -import io.github.typesafegithub.workflows.actions.github.CodeqlActionAnalyze_Untyped -import io.github.typesafegithub.workflows.actions.github.CodeqlActionInit_Untyped +import io.github.typesafegithub.workflows.actions.github.CodeqlActionAnalyze +import io.github.typesafegithub.workflows.actions.github.CodeqlActionInit import io.github.typesafegithub.workflows.domain.Concurrency import io.github.typesafegithub.workflows.domain.RunnerType.UbuntuLatest import io.github.typesafegithub.workflows.domain.triggers.* @@ -85,7 +85,7 @@ workflow( // Initializes the CodeQL tools for scanning uses( name = "Initialize CodeQL", - action = CodeqlActionInit_Untyped( + action = CodeqlActionInit( // Override language selection by uncommenting this and choosing your languages // languages = listOf("go", "javascript", "csharp", "python", "cpp", "java"), ) @@ -127,7 +127,7 @@ workflow( ) uses( name = "Perform CodeQL Analysis", - action = CodeqlActionAnalyze_Untyped() + action = CodeqlActionAnalyze() ) } } diff --git a/.github/workflows/release.main.kts b/.github/workflows/release.main.kts index 415c7c8d72..2a7ad8d819 100755 --- a/.github/workflows/release.main.kts +++ b/.github/workflows/release.main.kts @@ -28,7 +28,7 @@ import io.github.typesafegithub.workflows.actions.actions.Checkout import io.github.typesafegithub.workflows.actions.actions.Checkout.FetchDepth -import io.github.typesafegithub.workflows.actions.codecov.CodecovAction_Untyped +import io.github.typesafegithub.workflows.actions.codecov.CodecovAction import io.github.typesafegithub.workflows.domain.RunnerType import io.github.typesafegithub.workflows.domain.triggers.Push import io.github.typesafegithub.workflows.dsl.expressions.Contexts.github @@ -103,8 +103,8 @@ workflow( ) uses( name = "Upload to Codecov.io", - action = CodecovAction_Untyped( - failCiIfError_Untyped = "true" + action = CodecovAction( + failCiIfError = true ) ) }