Skip to content

Commit 152d849

Browse files
committed
Fix Docker image publication
1 parent e8e4e38 commit 152d849

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,28 +66,28 @@ jobs:
6666
uses: actions/checkout@v4
6767

6868
- name: Log in to Docker Hub
69-
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
69+
uses: docker/login-action@v3
7070
with:
7171
username: ${{ secrets.DOCKER_USERNAME }}
7272
password: ${{ secrets.DOCKER_PASSWORD }}
7373

7474
- name: Log in to the Container registry
75-
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
75+
uses: docker/login-action@v3
7676
with:
7777
registry: ghcr.io
7878
username: ${{ github.actor }}
7979
password: ${{ secrets.GITHUB_TOKEN }}
8080

8181
- name: Extract metadata (tags, labels) for Docker
8282
id: meta
83-
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
83+
uses: docker/metadata-action@v5
8484
with:
8585
images: |
8686
studiometa/test-redirection
8787
ghcr.io/${{ github.repository }}
8888
8989
- name: Build and push Docker images
90-
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
90+
uses: docker/build-push-action@v5
9191
with:
9292
context: .
9393
push: true

0 commit comments

Comments
 (0)