Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Bump docker/build-push-action from 3 to 4 #1194

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
CI: Bump docker/build-push-action from 3 to 4
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Feb 1, 2023
commit 856e716ebd81c531739aa2479c84416c92374cc2
6 changes: 3 additions & 3 deletions .github/workflows/flask.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build development image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
tags: ${{ steps.meta-dev.outputs.tags }}
labels: ${{ steps.meta-dev.outputs.labels }}
Expand All @@ -73,7 +73,7 @@ jobs:
- name: Stop services
run: docker-compose down
- name: Push development image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
if: github.event_name == 'push'
with:
push: true
Expand All @@ -93,7 +93,7 @@ jobs:
type=ref,event=tag
type=sha,format=long
- name: Build production image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
if: github.event_name == 'push'
with:
push: true
Expand Down