We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7944d8a commit 587fbd1Copy full SHA for 587fbd1
.github/workflows/docker-image.yml
@@ -13,16 +13,16 @@ jobs:
13
runs-on: ubuntu-latest
14
15
steps:
16
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
17
18
- name: Login to Docker Hub
19
- uses: docker/login-action@v1
+ uses: docker/login-action@v3
20
with:
21
username: ${{ secrets.DOCKER_HUB_USERNAME }}
22
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
23
24
- name: Set up Docker Buildx
25
- uses: docker/setup-buildx-action@v1
+ uses: docker/setup-buildx-action@v3
26
27
- name: Set tag for docker image
28
run: |
@@ -37,7 +37,7 @@ jobs:
37
run: echo ${{ env.tag_name }}
38
39
- name: Build and push
40
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v6
41
42
context: ./
43
file: ./Dockerfile
0 commit comments