From ab196b2390eca0223362a1fc14fa7359e6ea86ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 16:55:14 -0600 Subject: [PATCH] build(deps): bump the github-actions group with 4 updates (#342) Bumps the github-actions group with 4 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), [docker/build-push-action](https://github.com/docker/build-push-action) and [google-github-actions/deploy-cloudrun](https://github.com/google-github-actions/deploy-cloudrun). Updates `google-github-actions/auth` from 2.1.3 to 2.1.5 - [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/71fee32a0bb7e97b4d33d548e7d957010649d8fa...62cf5bd3e4211a0a0b51f2c6d6a37129d828611d) Updates `google-github-actions/setup-gcloud` from 2.1.0 to 2.1.1 - [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/98ddc00a17442e89a24bbf282954a3b65ce6d200...f0990588f1e5b5af6827153b93673613abdc6ec7) Updates `docker/build-push-action` from 6.5.0 to 6.7.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/5176d81f87c23d6fc96624dfdbcd9f3830bbe445...5cd11c3a4ced054e52742c5fd54dca954e0edd85) Updates `google-github-actions/deploy-cloudrun` from 2.6.0 to 2.7.1 - [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/733e7b3262836985cf714bf611234120a6cf2e8c...6ffa584a8ff78a430af94158c5538716464ea5a0) --- updated-dependencies: - dependency-name: google-github-actions/auth dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: google-github-actions/setup-gcloud dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: google-github-actions/deploy-cloudrun dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docker.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 2d43520..21e03af 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -38,14 +38,14 @@ jobs: - name: gcloud authenticate if: ${{ github.event_name != 'pull_request' }} - uses: google-github-actions/auth@71fee32a0bb7e97b4d33d548e7d957010649d8fa + uses: google-github-actions/auth@62cf5bd3e4211a0a0b51f2c6d6a37129d828611d with: project_id: ${{ secrets.GCP_PRODUCTION_PROJECT_ID }} credentials_json: ${{ secrets.GCP_SERVICE_ACCOUNT }} - name: gcloud sdk if: ${{ github.event_name != 'pull_request' }} - uses: google-github-actions/setup-gcloud@98ddc00a17442e89a24bbf282954a3b65ce6d200 + uses: google-github-actions/setup-gcloud@f0990588f1e5b5af6827153b93673613abdc6ec7 - name: gcloud docker setup if: ${{ github.event_name != 'pull_request' }} @@ -59,7 +59,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: build and push - uses: docker/build-push-action@5176d81f87c23d6fc96624dfdbcd9f3830bbe445 + uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 with: context: . platforms: linux/amd64,linux/arm64 @@ -78,16 +78,16 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: gcloud authenticate - uses: google-github-actions/auth@71fee32a0bb7e97b4d33d548e7d957010649d8fa + uses: google-github-actions/auth@62cf5bd3e4211a0a0b51f2c6d6a37129d828611d with: project_id: ${{ secrets.GCP_PRODUCTION_PROJECT_ID }} credentials_json: ${{ secrets.GCP_SERVICE_ACCOUNT }} - name: gcloud sdk - uses: google-github-actions/setup-gcloud@98ddc00a17442e89a24bbf282954a3b65ce6d200 + uses: google-github-actions/setup-gcloud@f0990588f1e5b5af6827153b93673613abdc6ec7 - name: deploy to cloud run - uses: google-github-actions/deploy-cloudrun@733e7b3262836985cf714bf611234120a6cf2e8c + uses: google-github-actions/deploy-cloudrun@6ffa584a8ff78a430af94158c5538716464ea5a0 if: ${{ github.event_name != 'pull_request' }} with: image: ${{ fromJSON(needs.publish.outputs.meta_json).tags[0] }}