Skip to content

Commit 168adb6

Browse files
feat(actions): update gradle/gradle-build-action@v2 (#1249)
Created automatically. Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b244868 commit 168adb6

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6
1+
a8f75513eafdebd8141bd1cd4e30fcd194af8dfa

github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/gradle/GradleBuildActionV2.kt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import kotlin.collections.toTypedArray
5454
* @param generateJobSummary When 'false', no Job Summary will be generated for the Job.
5555
* @param dependencyGraph Specifies if a GitHub dependency snapshot should be generated for each
5656
* Gradle build, and if so, how. Valid values are 'disabled' (default), 'generate',
57-
* 'generate-and-submit' and 'download-and-submit'.
57+
* 'generate-and-submit', 'download-and-submit' and 'clear'.
5858
* @param artifactRetentionDays Specifies the number of days to retain any artifacts generated by
5959
* the action. If not set, the default retention settings for the repository will apply.
6060
* @param gradleHomeCacheStrictMatch When 'true', the action will not attempt to restore the Gradle
@@ -126,8 +126,8 @@ public data class GradleBuildActionV2 private constructor(
126126
public val generateJobSummary: Boolean? = null,
127127
/**
128128
* Specifies if a GitHub dependency snapshot should be generated for each Gradle build, and if
129-
* so, how. Valid values are 'disabled' (default), 'generate', 'generate-and-submit' and
130-
* 'download-and-submit'.
129+
* so, how. Valid values are 'disabled' (default), 'generate', 'generate-and-submit',
130+
* 'download-and-submit' and 'clear'.
131131
*/
132132
public val dependencyGraph: GradleBuildActionV2.DependencyGraph? = null,
133133
/**
@@ -231,6 +231,8 @@ public data class GradleBuildActionV2 private constructor(
231231

232232
public object DownloadAndSubmit : GradleBuildActionV2.DependencyGraph("download-and-submit")
233233

234+
public object Clear : GradleBuildActionV2.DependencyGraph("clear")
235+
234236
public class Custom(
235237
customStringValue: String,
236238
) : GradleBuildActionV2.DependencyGraph(customStringValue)

0 commit comments

Comments
 (0)