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
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Authenticate to GCP
if: steps.check.outputs.should_test == 'true'
uses: google-github-actions/auth@v2
uses: google-github-actions/auth@v3
with:
project_id: anyplot
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/impl-generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -513,14 +513,14 @@ jobs:
# ========================================================================
- name: Authenticate to GCP
if: steps.pr.outputs.pr_exists == 'true'
uses: google-github-actions/auth@v2
uses: google-github-actions/auth@v3
with:
project_id: anyplot
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}

- name: Set up Cloud SDK
if: steps.pr.outputs.pr_exists == 'true'
uses: google-github-actions/setup-gcloud@v2
uses: google-github-actions/setup-gcloud@v3

- name: Upload to GCS Staging
id: gcs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/impl-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,14 @@ jobs:

- name: Authenticate to GCP
if: steps.check.outputs.should_run == 'true'
uses: google-github-actions/auth@v2
uses: google-github-actions/auth@v3
with:
project_id: anyplot
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}

- name: Set up Cloud SDK
if: steps.check.outputs.should_run == 'true'
uses: google-github-actions/setup-gcloud@v2
uses: google-github-actions/setup-gcloud@v3

- name: Promote GCS images to production
if: steps.check.outputs.should_run == 'true'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/impl-repair.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,14 @@ jobs:

- name: Authenticate to GCP
if: success()
uses: google-github-actions/auth@v2
uses: google-github-actions/auth@v3
with:
project_id: anyplot
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}

- name: Set up Cloud SDK
if: success()
uses: google-github-actions/setup-gcloud@v2
uses: google-github-actions/setup-gcloud@v3

- name: Upload repaired plot to GCS staging
if: success()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/impl-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Authenticate to GCP
id: gcs
continue-on-error: true
uses: google-github-actions/auth@v2
uses: google-github-actions/auth@v3
with:
project_id: anyplot
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uv sync

- name: Authenticate to GCP
uses: google-github-actions/auth@v2
uses: google-github-actions/auth@v3
with:
project_id: anyplot
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
Expand Down
Loading