Skip to content

Commit 4d3a13c

Browse files
committed
docs: Update actions/checkout references to v5
1 parent fc21748 commit 4d3a13c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ support](https://cloud.google.com/support).**
2626

2727
## Prerequisites
2828

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

@@ -58,7 +58,7 @@ jobs:
5858
id-token: 'write'
5959
6060
steps:
61-
- uses: 'actions/checkout@v4'
61+
- uses: 'actions/checkout@v5'
6262
6363
- uses: 'google-github-actions/auth@v3'
6464
with:
@@ -248,7 +248,7 @@ regardless of the authentication mechanism.
248248
jobs:
249249
job_id:
250250
steps:
251-
- uses: 'actions/checkout@v4' # Must come first!
251+
- uses: 'actions/checkout@v5' # Must come first!
252252
- uses: 'google-github-actions/auth@v3'
253253
```
254254

docs/EXAMPLES.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ value into a GitHub Secret named 'GOOGLE_CREDENTIALS'.
7777
jobs:
7878
job_id:
7979
steps:
80-
- uses: 'actions/checkout@v4'
80+
- uses: 'actions/checkout@v5'
8181

8282
- uses: 'google-github-actions/auth@v3'
8383
with:
@@ -97,7 +97,7 @@ jobs:
9797
id-token: 'write'
9898
9999
steps:
100-
- uses: 'actions/checkout@v4'
100+
- uses: 'actions/checkout@v5'
101101
102102
- id: 'auth'
103103
uses: 'google-github-actions/auth@v3'
@@ -133,7 +133,7 @@ jobs:
133133
id-token: 'write'
134134
135135
steps:
136-
- uses: 'actions/checkout@v4'
136+
- uses: 'actions/checkout@v5'
137137
138138
- id: 'auth'
139139
uses: 'google-github-actions/auth@v3'
@@ -170,7 +170,7 @@ jobs:
170170
id-token: 'write'
171171
172172
steps:
173-
- uses: 'actions/checkout@v4'
173+
- uses: 'actions/checkout@v5'
174174
175175
- id: 'auth'
176176
uses: 'google-github-actions/auth@v3'
@@ -220,7 +220,7 @@ jobs:
220220
id-token: 'write'
221221
222222
steps:
223-
- uses: 'actions/checkout@v4'
223+
- uses: 'actions/checkout@v5'
224224
225225
- id: 'auth'
226226
uses: 'google-github-actions/auth@v3'

docs/TROUBLESHOOTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
to these resources are eventually consistent. Usually they happen
2222
immediately, but sometimes they can take up to 5 minutes to propagate.
2323

24-
1. Ensure `actions/checkout@v4` is **before** the `auth` action in your
24+
1. Ensure `actions/checkout@v5` is **before** the `auth` action in your
2525
workflow.
2626

2727
```yaml
2828
steps:
29-
- uses: 'actions/checkout@v4'
29+
- uses: 'actions/checkout@v5'
3030
- uses: 'google-github-actions/auth@v3'
3131
```
3232

0 commit comments

Comments
 (0)