From cf5ebb3260c795250af7e79c07c9b45b8276a963 Mon Sep 17 00:00:00 2001 From: chii-bot <109454249+chii-bot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 10:24:04 +0000 Subject: [PATCH] feat(github-action)!: Update docker/build-push-action action to v6 | datasource | package | from | to | | ----------- | ------------------------ | ---- | -- | | github-tags | docker/build-push-action | v4 | v6 | --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2e70696f..90e09b8e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,7 +39,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and Push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1ecf788d..e6737ebc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -41,7 +41,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build and Push if: github.event_name != 'pull_request' - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile