4646 service_account :
' [email protected] ' 4747
4848 - name : ' Set up Cloud SDK'
49- uses : ' google-github-actions/setup-gcloud@v2 '
49+ uses : ' google-github-actions/setup-gcloud@v3 '
5050 with :
5151 version : ' >= 363.0.0'
5252
6363 value is `"latest"`, which will always download and install the latest
6464 available Cloud SDK version.
6565
66- - uses : ' google-github-actions/setup-gcloud@v2 '
66+ - uses : ' google-github-actions/setup-gcloud@v3 '
6767 with :
6868 version : ' >= 416.0.0'
6969
7676 or newer. If you need support for Workload Identity Federation, specify
7777 your version constraint as such :
7878
79- - uses : ' google-github-actions/setup-gcloud@v2 '
79+ - uses : ' google-github-actions/setup-gcloud@v3 '
8080 with :
8181 version : ' >= 363.0.0'
8282
@@ -152,7 +152,7 @@ jobs:
152152 service_account: '[email protected] ' 153153
154154 - name: 'Set up Cloud SDK'
155- uses: 'google-github-actions/setup-gcloud@v2 '
155+ uses: 'google-github-actions/setup-gcloud@v3 '
156156
157157 - name: 'Use gcloud CLI'
158158 run: 'gcloud info'
@@ -170,7 +170,7 @@ jobs:
170170 credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
171171
172172 - name: 'Set up Cloud SDK'
173- uses: 'google-github-actions/setup-gcloud@v2 '
173+ uses: 'google-github-actions/setup-gcloud@v3 '
174174
175175 - name: 'Use gcloud CLI'
176176 run: 'gcloud info'
@@ -187,7 +187,7 @@ jobs:
187187 job_id:
188188 steps:
189189 - name: 'Set up Cloud SDK'
190- uses: 'google-github-actions/setup-gcloud@v2 '
190+ uses: 'google-github-actions/setup-gcloud@v3 '
191191
192192 - name: 'Use gcloud CLI'
193193 run: 'gcloud info'
@@ -213,7 +213,7 @@ jobs:
213213 service_account: '[email protected] ' 214214
215215 - name: 'Set up Cloud SDK'
216- uses: 'google-github-actions/setup-gcloud@v2 '
216+ uses: 'google-github-actions/setup-gcloud@v3 '
217217
218218 - name: 'Use gcloud CLI'
219219 run: 'gcloud auth list --filter=status:ACTIVE --format="value(account)"'
@@ -225,7 +225,7 @@ jobs:
225225 credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
226226
227227 - name: 'Set up Cloud SDK'
228- uses: 'google-github-actions/setup-gcloud@v2 '
228+ uses: 'google-github-actions/setup-gcloud@v3 '
229229
230230 - name: 'Use gcloud CLI'
231231 run: 'gcloud auth list --filter=status:ACTIVE --format="value(account)"'
@@ -238,15 +238,15 @@ jobs:
238238We recommend pinning to the latest available major version :
239239
240240` ` ` yaml
241- - uses: 'google-github-actions/setup-gcloud@v2 '
241+ - uses: 'google-github-actions/setup-gcloud@v3 '
242242` ` `
243243
244244While this action attempts to follow semantic versioning, but we're ultimately
245245human and sometimes make mistakes. To prevent accidental breaking changes, you
246246can also pin to a specific version :
247247
248248` ` ` yaml
249- - uses: 'google-github-actions/setup-gcloud@v2 .0.0'
249+ - uses: 'google-github-actions/setup-gcloud@v3 .0.0'
250250` ` `
251251
252252However, you will not get automatic security updates or new features without
0 commit comments