Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:

# Workaround: https://github.com/docker/build-push-action/issues/461
- name: Setup Docker buildx
uses: docker/setup-buildx-action@d91f340399fb2345e3e45f5461e116862b08261d
uses: docker/setup-buildx-action@172dff065fb2e54aaed577fd667975cd412819fb

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@292fe2d7ee5389e283d2c71e565819146798c2e2
uses: docker/login-action@a0d57b8e43b6ef1cca20559d68cec2227e63fccd
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
Expand All @@ -56,7 +56,7 @@ jobs:
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@11079342065fb7d2c3b37cb799ab6ecc01ad1bb2
uses: docker/metadata-action@4378dc6be7f72231dfe78ac7e0364a44f1c9f54b
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# generate Docker tags based on the following events/attributes
Expand All @@ -69,7 +69,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@de308676347136a77704e0f257298c8f1b30054f
uses: docker/build-push-action@b66d8774c665b789105b440514f0c97e6f19b06f
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v7
Expand Down