diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index cff10335..78451975 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -55,7 +55,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - run: echo "Build and push ${{ steps.container.outputs.image-tags }}" - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: ${{ github.event_name != 'pull_request' }} diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 66ee8963..749e36f1 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -74,7 +74,7 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push Container image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: ${{ github.event_name != 'pull_request' && (github.ref_type == 'tag' || github.ref_name == 'main') }} @@ -101,7 +101,7 @@ jobs: type=raw,value=oldstable-{{branch}}-{{sha}},enable=${{ github.ref_type == 'branch' && github.event_name == 'push' && github.ref_name != 'main' }} type=ref,event=pr - name: Build and push Container image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: ${{ github.event_name != 'pull_request' && (github.ref_type == 'tag' || github.ref_name == 'main') }} @@ -128,7 +128,7 @@ jobs: type=raw,value=testing-{{branch}}-{{sha}},enable=${{ github.ref_type == 'branch' && github.event_name == 'push' && github.ref_name != 'main' }} type=ref,event=pr - name: Build and push Container image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: ${{ github.event_name != 'pull_request' && (github.ref_type == 'tag' || github.ref_name == 'main') }}