From 35f86189315a3380ff5b608401e413f588fee433 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 3 Dec 2023 14:18:59 -0800 Subject: [PATCH] CI: (deps): Bump docker/build-push-action from 5.0.0 to 5.1.0 (#158) --- .github/workflows/docker-image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 207ac1b..6064403 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -105,7 +105,7 @@ jobs: df -h - name: Build and load local docker image for PRs or Not Tags - uses: docker/build-push-action@v5.0.0 + uses: docker/build-push-action@v5.1.0 if: github.event_name == 'pull_request' || !startsWith(github.ref, 'refs/tags/') with: context: . @@ -113,7 +113,7 @@ jobs: tags: ${{ env.IMAGE_NAME}}:${{ env.TAG}} - name: Build and load local docker image for Not PRs and Tags - uses: docker/build-push-action@v5.0.0 + uses: docker/build-push-action@v5.1.0 if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/') with: context: . @@ -172,7 +172,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v5.0.0 + uses: docker/build-push-action@v5.1.0 with: context: . # Android SDK not support arm64 yet