From 3ad32a7edd3ed9a30ce36d8a2f2be84f9df5d810 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jul 2024 15:13:38 +0000 Subject: [PATCH] deps(actions): bump the gcp group with 3 updates Bumps the gcp group with 3 updates: [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.1.2 to 2.1.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.1.2...v2.1.3) Updates `google-github-actions/setup-gcloud` from 1.1.1 to 2.1.0 - [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/v1.1.1...v2.1.0) Updates `google-github-actions/deploy-cloudrun` from 2.2.0 to 2.6.0 - [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.2.0...v2.6.0) --- updated-dependencies: - dependency-name: google-github-actions/auth dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gcp - dependency-name: google-github-actions/setup-gcloud dependency-type: direct:production update-type: version-update:semver-major dependency-group: gcp - dependency-name: google-github-actions/deploy-cloudrun dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gcp ... Signed-off-by: dependabot[bot] --- .github/workflows/chore-clean-dev.yml | 4 ++-- .github/workflows/sub-build-docker-image.yml | 2 +- .github/workflows/sub-cloudrun-deploy.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/chore-clean-dev.yml b/.github/workflows/chore-clean-dev.yml index d476d14..392b243 100644 --- a/.github/workflows/chore-clean-dev.yml +++ b/.github/workflows/chore-clean-dev.yml @@ -17,13 +17,13 @@ jobs: - name: Authenticate to Google Cloud id: auth - uses: google-github-actions/auth@v2.1.2 + uses: google-github-actions/auth@v2.1.3 with: workload_identity_provider: '${{ vars.GCP_WIF }}' service_account: '${{ vars.GCP_DEPLOYMENTS_SA }}' - name: Set up Cloud SDK - uses: google-github-actions/setup-gcloud@v1.1.1 + uses: google-github-actions/setup-gcloud@v2.1.0 - name: Removing CR service run: | diff --git a/.github/workflows/sub-build-docker-image.yml b/.github/workflows/sub-build-docker-image.yml index 6b4bacb..90b86d9 100644 --- a/.github/workflows/sub-build-docker-image.yml +++ b/.github/workflows/sub-build-docker-image.yml @@ -72,7 +72,7 @@ jobs: - name: Authenticate to Google Cloud id: auth - uses: google-github-actions/auth@v2.1.2 + uses: google-github-actions/auth@v2.1.3 with: workload_identity_provider: '${{ vars.GCP_WIF }}' service_account: '${{ vars.GCP_ARTIFACTS_SA }}' diff --git a/.github/workflows/sub-cloudrun-deploy.yml b/.github/workflows/sub-cloudrun-deploy.yml index 69b2e10..e5162d2 100644 --- a/.github/workflows/sub-cloudrun-deploy.yml +++ b/.github/workflows/sub-cloudrun-deploy.yml @@ -77,7 +77,7 @@ jobs: - name: Authenticate to Google Cloud id: auth - uses: google-github-actions/auth@v2.1.2 + uses: google-github-actions/auth@v2.1.3 with: workload_identity_provider: '${{ vars.GCP_WIF }}' service_account: '${{ vars.GCP_DEPLOYMENTS_SA }}' @@ -87,7 +87,7 @@ jobs: - name: Deploy to cloud run id: deploy - uses: google-github-actions/deploy-cloudrun@v2.2.0 + uses: google-github-actions/deploy-cloudrun@v2.6.0 with: service: ${{ inputs.app_name }}-${{ needs.versioning.outputs.version || env.GITHUB_HEAD_REF_SLUG || inputs.environment }} image: ${{ inputs.registry }}/${{ inputs.app_name }}@${{ inputs.image_digest }}