Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ support](https://cloud.google.com/support).**

## Prerequisites

- Run the `actions/checkout@v4` step _before_ this action. Omitting the
- Run the `actions/checkout@v5` step _before_ this action. Omitting the
checkout step or putting it after `auth` will cause future steps to be
unable to authenticate.

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
id-token: 'write'

steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v5'

- uses: 'google-github-actions/auth@v3'
with:
Expand Down Expand Up @@ -248,7 +248,7 @@ regardless of the authentication mechanism.
jobs:
job_id:
steps:
- uses: 'actions/checkout@v4' # Must come first!
- uses: 'actions/checkout@v5' # Must come first!
- uses: 'google-github-actions/auth@v3'
```

Expand Down
10 changes: 5 additions & 5 deletions docs/EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ value into a GitHub Secret named 'GOOGLE_CREDENTIALS'.
jobs:
job_id:
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v5'

- uses: 'google-github-actions/auth@v3'
with:
Expand All @@ -97,7 +97,7 @@ jobs:
id-token: 'write'

steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v5'

- id: 'auth'
uses: 'google-github-actions/auth@v3'
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
id-token: 'write'

steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v5'

- id: 'auth'
uses: 'google-github-actions/auth@v3'
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
id-token: 'write'

steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v5'

- id: 'auth'
uses: 'google-github-actions/auth@v3'
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
id-token: 'write'

steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v5'

- id: 'auth'
uses: 'google-github-actions/auth@v3'
Expand Down
4 changes: 2 additions & 2 deletions docs/TROUBLESHOOTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
to these resources are eventually consistent. Usually they happen
immediately, but sometimes they can take up to 5 minutes to propagate.

1. Ensure `actions/checkout@v4` is **before** the `auth` action in your
1. Ensure `actions/checkout@v5` is **before** the `auth` action in your
workflow.

```yaml
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v5'
- uses: 'google-github-actions/auth@v3'
```

Expand Down