Skip to content

Commit

Permalink
docker actions
Browse files Browse the repository at this point in the history
- docker/setup-qemu-action: v2 -> v3
- docker/setup-buildx-action: v2 -> v3
- docker/login-action: v2 -> v3
- docker/metadata-action: v4 -> v5
- docker/build-push-action: v4 -> v5
  • Loading branch information
IvoBCD committed Nov 14, 2024
1 parent 9dc50c5 commit 0235681
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,24 @@ jobs:
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# 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@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
#tags: |
Expand All @@ -59,7 +59,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
provenance: false
Expand Down

0 comments on commit 0235681

Please sign in to comment.