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

Update docker/build-push-action action to v6 #38

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
submodules: recursive
- name: Build
uses: docker/build-push-action@v1
uses: docker/build-push-action@v6
with:
registry: containers.monetr.dev
repository: deepsource
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
run: |
echo ::set-output name=POST_TAG::$(date +%Y.%m.%d)
- name: Build and push containers.monetr.dev
uses: docker/build-push-action@v1
uses: docker/build-push-action@v6
with:
registry: containers.monetr.dev
username: ${{ secrets.containers_push_username }}
password: ${{ secrets.containers_push_password }}
tags: latest,${{ steps.tag.outputs.POST_TAG }}
repository: deepsource
- name: Build and push ghcr.io
uses: docker/build-push-action@v1
uses: docker/build-push-action@v6
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
Loading