We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3599143 commit a6770d3Copy full SHA for a6770d3
.github/workflows/docker-image.yml
@@ -20,22 +20,22 @@ jobs:
20
uses: actions/checkout@v2
21
22
- name: Log in to the Container registry
23
- uses: docker/login-action@v1
+ uses: docker/login-action@v3
24
with:
25
registry: ${{ env.REGISTRY }}
26
username: ${{ github.actor }}
27
password: ${{ secrets.GITHUB_TOKEN }}
28
29
- name: Extract metadata (tags, labels) for Docker
30
id: meta
31
- uses: docker/metadata-action@v3
+ uses: docker/metadata-action@v5
32
33
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
34
tags: |
35
type=sha,prefix={{branch}}-
36
37
- name: Build and push Docker image
38
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v5
39
40
context: .
41
push: true
0 commit comments