Skip to content

Commit 2057533

Browse files
authored
Use latest minor version of GH Actions deps
1 parent 050932f commit 2057533

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/docker-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747
# multi-platform images and export cache
4848
# https://github.com/docker/setup-buildx-action
4949
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
50+
uses: docker/setup-buildx-action@v3
5151

5252
# Login against a Docker registry except on PR
5353
# https://github.com/docker/login-action
5454
- name: Log into registry ${{ env.REGISTRY }}
5555
if: github.event_name != 'pull_request'
56-
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
56+
uses: docker/login-action@v3
5757
with:
5858
registry: ${{ env.REGISTRY }}
5959
username: ${{ github.actor }}
@@ -63,15 +63,15 @@ jobs:
6363
# https://github.com/docker/metadata-action
6464
- name: Extract Docker metadata
6565
id: meta
66-
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
66+
uses: docker/metadata-action@v5
6767
with:
6868
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6969

7070
# Build and push Docker image with Buildx (don't push on PR)
7171
# https://github.com/docker/build-push-action
7272
- name: Build and push Docker image
7373
id: build-and-push
74-
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
74+
uses: docker/build-push-action@v5
7575
with:
7676
context: .
7777
push: ${{ github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)