@@ -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