From a38000d5f0978be030665723917205b4a63ce715 Mon Sep 17 00:00:00 2001 From: Michael Peters Date: Tue, 24 Jan 2023 14:04:57 -0800 Subject: [PATCH] fix: pin docker build push action version --- .github/workflows/base_app_release.yml | 2 +- .github/workflows/go_app_pull_requests.yml | 2 +- .github/workflows/go_app_release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/base_app_release.yml b/.github/workflows/base_app_release.yml index 1222275..8ce2848 100644 --- a/.github/workflows/base_app_release.yml +++ b/.github/workflows/base_app_release.yml @@ -101,7 +101,7 @@ jobs: uses: docker/setup-buildx-action@v2 # Build and push the image. - name: Build and Push to Artifact Registry and Container Registry - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v3.2.0 with: push: true context: . diff --git a/.github/workflows/go_app_pull_requests.yml b/.github/workflows/go_app_pull_requests.yml index 1f83367..415018f 100644 --- a/.github/workflows/go_app_pull_requests.yml +++ b/.github/workflows/go_app_pull_requests.yml @@ -137,7 +137,7 @@ jobs: uses: docker/setup-buildx-action@v2 # Build the app. - name: Build - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v3.2.0 with: push: false context: . diff --git a/.github/workflows/go_app_release.yml b/.github/workflows/go_app_release.yml index d45a63b..e972184 100644 --- a/.github/workflows/go_app_release.yml +++ b/.github/workflows/go_app_release.yml @@ -121,7 +121,7 @@ jobs: uses: docker/setup-buildx-action@v2 # Build and push the image. - name: Build and Push to Artifact Registry and Container Registry - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v3.2.0 with: push: true context: .