Skip to content

Commit 4e5b712

Browse files
committed
Rebuild again
1 parent e657f00 commit 4e5b712

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/dockerbuild.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
steps:
3939
-
4040
name: Checkout
41-
uses: actions/checkout@v2
41+
uses: actions/checkout@v4
4242
-
4343
name: Set up QEMU
4444
uses: docker/setup-qemu-action@v1
@@ -47,9 +47,9 @@ jobs:
4747
uses: docker/setup-buildx-action@v1
4848
-
4949
name: Login to DockerHub
50-
uses: docker/login-action@v1
50+
uses: docker/login-action@v3
5151
with:
52-
username: ${{ secrets.DOCKERHUB_LOGIN_USER }}
52+
username: frikky
5353
password: ${{ secrets.DOCKERHUB_TOKEN }}
5454
# Use below configuration for ghcr.io
5555
# with:
@@ -60,7 +60,7 @@ jobs:
6060
name: Build and push Master
6161
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
6262
id: docker_build_master
63-
uses: docker/build-push-action@v2
63+
uses: docker/build-push-action@v6
6464
with:
6565
context: ${{ matrix.app }}/${{ matrix.version }}
6666
file: ${{ matrix.app }}/${{ matrix.version }}/Dockerfile
@@ -74,7 +74,7 @@ jobs:
7474
name: Build and push Feature PR
7575
if: ${{ github.event_name == 'pull_request' }}
7676
id: docker_build_feature
77-
uses: docker/build-push-action@v2
77+
uses: docker/build-push-action@v6
7878
with:
7979
context: ${{ matrix.app }}/${{ matrix.version }}
8080
file: ${{ matrix.app }}/${{ matrix.version }}/Dockerfile

0 commit comments

Comments
 (0)