We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d7fb4f commit 4393593Copy full SHA for 4393593
.github/workflows/docker.yml
@@ -20,19 +20,19 @@ jobs:
20
runs-on: ubuntu-latest
21
steps:
22
- name: Checkout
23
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
24
with:
25
fetch-depth: 0
26
27
- name: Log into registry ${{ env.REGISTRY }}
28
- uses: docker/login-action@v2.0.0
+ uses: docker/login-action@v3
29
30
registry: ${{ env.REGISTRY }}
31
username: ${{ github.actor }}
32
password: ${{ secrets.GITHUB_TOKEN }}
33
34
- name: Build and push Docker image
35
- uses: docker/build-push-action@v3.1.1
+ uses: docker/build-push-action@v5
36
37
context: .
38
push: true
0 commit comments