Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Update docker/build-push-action action to v3 #1508

Merged
merged 1 commit into from
Jun 10, 2022
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ runs:

# build a docker image
- name: build docker image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
if: ${{ github.event.inputs.is_production == false }}
with:
context: .
Expand All @@ -79,7 +79,7 @@ runs:

# build a docker image
- name: build docker image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
if: ${{ github.event.inputs.is_production == true }}
with:
context: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
type=ref,event=tag
${{ github.event_name == 'push' && 'type=raw,value=main' || '' }}

- uses: docker/build-push-action@v2
- uses: docker/build-push-action@v3
with:
context: .
tags: ${{ steps.metadata.outputs.tags }}
Expand Down