Skip to content

Commit af08fb8

Browse files
Merge pull request #41 from PythonGermany/update-docker-ci
Update docker-ci.yml
2 parents 41b34db + 80daa49 commit af08fb8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/docker-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939
# multi-platform images and export cache
4040
# https://github.com/docker/setup-buildx-action
4141
- name: Set up Docker Buildx
42-
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
42+
uses: docker/setup-buildx-action@v3
4343

4444
# Login against a Docker registry except on PR
4545
# https://github.com/docker/login-action
4646
- name: Log into registry ${{ env.REGISTRY }}
4747
if: github.event_name != 'pull_request'
48-
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
48+
uses: docker/login-action@v3
4949
with:
5050
registry: ${{ env.REGISTRY }}
5151
username: ${{ vars.DOCKERHUB_USERNAME }}
@@ -55,15 +55,15 @@ jobs:
5555
# https://github.com/docker/metadata-action
5656
- name: Extract Docker metadata
5757
id: meta
58-
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
58+
uses: docker/metadata-action@v5
5959
with:
6060
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6161

6262
# Build and push Docker image with Buildx (don't push on PR)
6363
# https://github.com/docker/build-push-action
6464
- name: Build and push Docker image
6565
id: build-and-push
66-
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
66+
uses: docker/build-push-action@v6
6767
with:
6868
context: .
6969
push: ${{ github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)