Skip to content

Commit bdd5619

Browse files
committed
Fix CodecovAction_Untyped
1 parent 3df38e4 commit bdd5619

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/branches-and-prs.main.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
import io.github.typesafegithub.workflows.actions.actions.Checkout
3030
import io.github.typesafegithub.workflows.actions.actions.Checkout.FetchDepth
31-
import io.github.typesafegithub.workflows.actions.codecov.CodecovAction
31+
import io.github.typesafegithub.workflows.actions.codecov.CodecovAction_Untyped
3232
import io.github.typesafegithub.workflows.domain.Concurrency
3333
import io.github.typesafegithub.workflows.domain.RunnerType
3434
import io.github.typesafegithub.workflows.domain.RunnerType.UbuntuLatest
@@ -127,8 +127,8 @@ workflow(
127127
)
128128
uses(
129129
name = "Upload to Codecov.io",
130-
action = CodecovAction(
131-
failCiIfError = true
130+
action = CodecovAction_Untyped(
131+
failCiIfError_Untyped = "true"
132132
)
133133
)
134134
}

.github/workflows/release.main.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
import io.github.typesafegithub.workflows.actions.actions.Checkout
3030
import io.github.typesafegithub.workflows.actions.actions.Checkout.FetchDepth
31-
import io.github.typesafegithub.workflows.actions.codecov.CodecovAction
31+
import io.github.typesafegithub.workflows.actions.codecov.CodecovAction_Untyped
3232
import io.github.typesafegithub.workflows.domain.RunnerType
3333
import io.github.typesafegithub.workflows.domain.triggers.Push
3434
import io.github.typesafegithub.workflows.dsl.expressions.Contexts.github
@@ -103,8 +103,8 @@ workflow(
103103
)
104104
uses(
105105
name = "Upload to Codecov.io",
106-
action = CodecovAction(
107-
failCiIfError = true
106+
action = CodecovAction_Untyped(
107+
failCiIfError_Untyped = "true"
108108
)
109109
)
110110
}

0 commit comments

Comments
 (0)