Skip to content

Commit dd9d6ab

Browse files
committed
chore: update Kotlin DSL in workflows to 0.22.0
1 parent b8c09e5 commit dd9d6ab

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/build.main.kts

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env kotlin
2-
@file:DependsOn("it.krzeminski:github-actions-kotlin-dsl:0.19.0")
2+
@file:DependsOn("it.krzeminski:github-actions-kotlin-dsl:0.22.0")
33

4-
import it.krzeminski.githubactions.actions.CustomAction
54
import it.krzeminski.githubactions.actions.actions.CheckoutV3
65
import it.krzeminski.githubactions.actions.gradle.GradleBuildActionV2
6+
import it.krzeminski.githubactions.actions.krzema12.GithubActionsTypingV0
77
import it.krzeminski.githubactions.domain.RunnerType
88
import it.krzeminski.githubactions.domain.triggers.PullRequest
99
import it.krzeminski.githubactions.domain.triggers.Push
@@ -31,11 +31,6 @@ workflow(
3131
runsOn = RunnerType.UbuntuLatest,
3232
) {
3333
uses(CheckoutV3())
34-
uses(
35-
CustomAction(
36-
"krzema12", "github-actions-typing", "v0",
37-
inputs = emptyMap(),
38-
)
39-
)
34+
uses(GithubActionsTypingV0())
4035
}
4136
}.writeToFile()

.github/workflows/update-gradle-wrapper.main.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env kotlin
2-
@file:DependsOn("it.krzeminski:github-actions-kotlin-dsl:0.19.0")
2+
@file:DependsOn("it.krzeminski:github-actions-kotlin-dsl:0.22.0")
33

44
import it.krzeminski.githubactions.actions.actions.CheckoutV3
55
import it.krzeminski.githubactions.actions.gradleupdate.UpdateGradleWrapperActionV1

0 commit comments

Comments
 (0)