Skip to content

Commit ca0e22a

Browse files
feat(actions): update google-github-actions/auth@v2 (#1265)
Created automatically. Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d7cef3f commit ca0e22a

File tree

2 files changed

+6
-1
lines changed
  • actions/google-github-actions/auth/v2
  • github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/googlegithubactions

2 files changed

+6
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
67e9c72af6e0492df856527b474995862b7b6591
1+
a6e2e39c0a0331da29f7fd2c2a20a427e8d3ad1f

github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/googlegithubactions/AuthV2.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
@file:Suppress(
55
"DataClassPrivateConstructor",
66
"UNUSED_PARAMETER",
7+
"DEPRECATION",
78
)
89

910
package io.github.typesafegithub.workflows.actions.googlegithubactions
@@ -12,6 +13,7 @@ import io.github.typesafegithub.workflows.domain.actions.Action
1213
import io.github.typesafegithub.workflows.domain.actions.RegularAction
1314
import java.util.LinkedHashMap
1415
import kotlin.Boolean
16+
import kotlin.Deprecated
1517
import kotlin.Int
1618
import kotlin.String
1719
import kotlin.Suppress
@@ -217,16 +219,19 @@ public data class AuthV2 private constructor(
217219
* for automated pipelines that may execute before IAM permissions are fully
218220
* propogated.
219221
*/
222+
@Deprecated("This field is no longer used and will be removed in a future release.")
220223
public val retries: Int? = null,
221224
/**
222225
* Delay time before trying another authentication attempt. This is
223226
* implemented using a fibonacci backoff method (e.g. 1-1-2-3-5). The default
224227
* value is 250 milliseconds.
225228
*/
229+
@Deprecated("This field is no longer used and will be removed in a future release.")
226230
public val backoff: Int? = null,
227231
/**
228232
* Limits the retry backoff to the specified value.
229233
*/
234+
@Deprecated("This field is no longer used and will be removed in a future release.")
230235
public val backoffLimit: Int? = null,
231236
/**
232237
* The audience (aud) for the generated Google Cloud ID Token. This is only

0 commit comments

Comments
 (0)