diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index 4266c595..ac9461b9 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -94,7 +94,8 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v5 + # Do not bump below action version (Known issue - https://github.com/docker/build-push-action/issues/820) + uses: docker/build-push-action@v3 with: context: . push: true @@ -113,7 +114,8 @@ jobs: type=semver,pattern={{version}},suffix=-amd64,latest=false type=sha,suffix=-amd64,latest=false - name: Build and push single-arch amd64 image - uses: docker/build-push-action@v5 + # Do not bump below action version (Known issue - https://github.com/docker/build-push-action/issues/820) + uses: docker/build-push-action@v3 with: context: . platforms: linux/amd64 @@ -132,7 +134,8 @@ jobs: type=semver,pattern={{version}},suffix=-arm64,latest=false type=sha,suffix=-arm64,latest=false - name: Build and push single-arch arm64 image - uses: docker/build-push-action@v5 + # Do not bump below action version (Known issue - https://github.com/docker/build-push-action/issues/820) + uses: docker/build-push-action@v3 with: context: . platforms: linux/arm64