diff --git a/actions/gradle/gradle-build-action/v2/commit-hash.txt b/actions/gradle/gradle-build-action/v2/commit-hash.txt index d0c527c10..d673144c3 100644 --- a/actions/gradle/gradle-build-action/v2/commit-hash.txt +++ b/actions/gradle/gradle-build-action/v2/commit-hash.txt @@ -1 +1 @@ -87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6 \ No newline at end of file +a8f75513eafdebd8141bd1cd4e30fcd194af8dfa \ No newline at end of file diff --git a/github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/gradle/GradleBuildActionV2.kt b/github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/gradle/GradleBuildActionV2.kt index a74daddfa..e123cd1f1 100644 --- a/github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/gradle/GradleBuildActionV2.kt +++ b/github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/gradle/GradleBuildActionV2.kt @@ -54,7 +54,7 @@ import kotlin.collections.toTypedArray * @param generateJobSummary When 'false', no Job Summary will be generated for the Job. * @param dependencyGraph Specifies if a GitHub dependency snapshot should be generated for each * Gradle build, and if so, how. Valid values are 'disabled' (default), 'generate', - * 'generate-and-submit' and 'download-and-submit'. + * 'generate-and-submit', 'download-and-submit' and 'clear'. * @param artifactRetentionDays Specifies the number of days to retain any artifacts generated by * the action. If not set, the default retention settings for the repository will apply. * @param gradleHomeCacheStrictMatch When 'true', the action will not attempt to restore the Gradle @@ -126,8 +126,8 @@ public data class GradleBuildActionV2 private constructor( public val generateJobSummary: Boolean? = null, /** * Specifies if a GitHub dependency snapshot should be generated for each Gradle build, and if - * so, how. Valid values are 'disabled' (default), 'generate', 'generate-and-submit' and - * 'download-and-submit'. + * so, how. Valid values are 'disabled' (default), 'generate', 'generate-and-submit', + * 'download-and-submit' and 'clear'. */ public val dependencyGraph: GradleBuildActionV2.DependencyGraph? = null, /** @@ -231,6 +231,8 @@ public data class GradleBuildActionV2 private constructor( public object DownloadAndSubmit : GradleBuildActionV2.DependencyGraph("download-and-submit") + public object Clear : GradleBuildActionV2.DependencyGraph("clear") + public class Custom( customStringValue: String, ) : GradleBuildActionV2.DependencyGraph(customStringValue)