Skip to content

Commit 8814657

Browse files
feat(actions): update gradle/gradle-build-action@v3 (#1270)
Created automatically. Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4b2659d commit 8814657

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public data class GradleBuildActionV3 private constructor(
172172
/**
173173
* Indicate that you agree to the Build Scan® terms of service. This input value must be "yes".
174174
*/
175-
public val buildScanTermsOfServiceAgree: Boolean? = null,
175+
public val buildScanTermsOfServiceAgree: String? = null,
176176
/**
177177
* Gradle command line arguments (supports multi-line input)
178178
*/
@@ -228,7 +228,7 @@ public data class GradleBuildActionV3 private constructor(
228228
artifactRetentionDays: Int? = null,
229229
buildScanPublish: Boolean? = null,
230230
buildScanTermsOfServiceUrl: String? = null,
231-
buildScanTermsOfServiceAgree: Boolean? = null,
231+
buildScanTermsOfServiceAgree: String? = null,
232232
arguments: String? = null,
233233
buildRootDirectory: String? = null,
234234
generateJobSummary: Boolean? = null,
@@ -272,8 +272,7 @@ public data class GradleBuildActionV3 private constructor(
272272
artifactRetentionDays?.let { "artifact-retention-days" to it.toString() },
273273
buildScanPublish?.let { "build-scan-publish" to it.toString() },
274274
buildScanTermsOfServiceUrl?.let { "build-scan-terms-of-service-url" to it },
275-
buildScanTermsOfServiceAgree?.let { "build-scan-terms-of-service-agree" to it.toString()
276-
},
275+
buildScanTermsOfServiceAgree?.let { "build-scan-terms-of-service-agree" to it },
277276
arguments?.let { "arguments" to it },
278277
buildRootDirectory?.let { "build-root-directory" to it },
279278
generateJobSummary?.let { "generate-job-summary" to it.toString() },

0 commit comments

Comments
 (0)