Skip to content

Commit e1cd398

Browse files
committed
Fix githubaction
1 parent 07dca03 commit e1cd398

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docker-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,25 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v3
3030

31-
- name: Log in to the Container registry
32-
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d
31+
- name: Log in to the Container registry
32+
uses: docker/login-action@v2.1.0
3333
with:
3434
registry: ${{ env.REGISTRY }}
3535
username: ${{ github.actor }}
3636
password: ${{ secrets.GITHUB_TOKEN }}
3737

3838
- name: Extract metadata (tags, labels) for Docker
3939
id: meta
40-
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934
40+
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
4141
with:
4242
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4343

4444
- name: Build and push Docker image
45-
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09
45+
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
4646
with:
4747
context: .
4848
push: true
4949
tags: ${{ steps.meta.outputs.tags }}
50-
labels: ${{ steps.meta.outputs.labels }}
50+
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)