summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/docker-image.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
index 212a647..c8c8930 100644
--- a/.github/workflows/docker-image.yml
+++ b/.github/workflows/docker-image.yml
@@ -25,13 +25,13 @@ jobs:
25 25
26 - name: Login to DockerHub 26 - name: Login to DockerHub
27 if: github.event_name != 'pull_request' 27 if: github.event_name != 'pull_request'
28 uses: docker/login-action@v1 28 uses: docker/login-action@v3
29 with: 29 with:
30 registry: ghcr.io 30 registry: ghcr.io
31 username: ${{ github.actor }} 31 username: ${{ github.actor }}
32 password: ${{ secrets.GITHUB_TOKEN }} 32 password: ${{ secrets.GITHUB_TOKEN }}
33 - name: Build and push 33 - name: Build and push
34 uses: docker/build-push-action@v4 34 uses: docker/build-push-action@v6
35 with: 35 with:
36 context: . 36 context: .
37 push: ${{ github.event_name != 'pull_request' }} 37 push: ${{ github.event_name != 'pull_request' }}