From edf3abfd6a4e3f5a286a06cfdb43dd16f0e1f663 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 05:25:57 +0000 Subject: [PATCH] build(deps): bump the gcp-actions group across 1 directory with 3 updates Bumps the gcp-actions group with 3 updates in the / directory: [google-github-actions/auth](https://github.com/google-github-actions/auth), [google-github-actions/setup-gcloud](https://github.com/google-github-actions/setup-gcloud) and [google-github-actions/deploy-cloudrun](https://github.com/google-github-actions/deploy-cloudrun). Updates `google-github-actions/auth` from 2 to 3 - [Release notes](https://github.com/google-github-actions/auth/releases) - [Changelog](https://github.com/google-github-actions/auth/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/auth/compare/v2...v3) Updates `google-github-actions/setup-gcloud` from 2 to 3 - [Release notes](https://github.com/google-github-actions/setup-gcloud/releases) - [Changelog](https://github.com/google-github-actions/setup-gcloud/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/setup-gcloud/compare/v2...v3) Updates `google-github-actions/deploy-cloudrun` from 2 to 3 - [Release notes](https://github.com/google-github-actions/deploy-cloudrun/releases) - [Changelog](https://github.com/google-github-actions/deploy-cloudrun/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/deploy-cloudrun/compare/v2...v3) --- updated-dependencies: - dependency-name: google-github-actions/auth dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gcp-actions - dependency-name: google-github-actions/deploy-cloudrun dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gcp-actions - dependency-name: google-github-actions/setup-gcloud dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gcp-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9c1ea21c..44bb4995 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,12 +27,12 @@ jobs: cache: pnpm - run: pnpm install --frozen-lockfile - - uses: google-github-actions/auth@v2 + - uses: google-github-actions/auth@v3 with: workload_identity_provider: ${{ vars.GCP_WORKLOAD_IDENTITY_PROVIDER }} service_account: ${{ vars.GCP_SERVICE_ACCOUNT }} - - uses: google-github-actions/setup-gcloud@v2 + - uses: google-github-actions/setup-gcloud@v3 - name: Configure Docker for Artifact Registry run: gcloud auth configure-docker ${{ vars.GCP_REGION }}-docker.pkg.dev @@ -88,7 +88,7 @@ jobs: docker push ${{ vars.GCP_REGION }}-docker.pkg.dev/${{ vars.GCP_PROJECT_ID }}/tech-blog/app:${{ github.sha }} - name: Deploy to Cloud Run - uses: google-github-actions/deploy-cloudrun@v2 + uses: google-github-actions/deploy-cloudrun@v3 with: service: detached-node image: ${{ vars.GCP_REGION }}-docker.pkg.dev/${{ vars.GCP_PROJECT_ID }}/tech-blog/app:${{ github.sha }}