Skip to content

Commit

Permalink
feat(actions): update gradle/gradle-build-action@v2 (#1249)
Browse files Browse the repository at this point in the history
Created automatically.

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Feb 1, 2024
1 parent b244868 commit 168adb6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion actions/gradle/gradle-build-action/v2/commit-hash.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6
a8f75513eafdebd8141bd1cd4e30fcd194af8dfa
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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,
/**
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 168adb6

Please sign in to comment.