Skip to content

Commit f261c0c

Browse files
authored
Merge pull request #819 from b-ehlers/actions_version
Docker build: Update actions version
2 parents 9a343ba + dbc0719 commit f261c0c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-docker-images.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,23 @@ jobs:
2626
steps:
2727
- name: Check out repository code
2828
# https://github.com/marketplace/actions/checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 0
3232

3333
- name: Set up QEMU
3434
# https://github.com/marketplace/actions/docker-setup-qemu
35-
uses: docker/setup-qemu-action@v2
35+
uses: docker/setup-qemu-action@v3
3636

3737
- name: Set up Docker Buildx
3838
# https://github.com/marketplace/actions/docker-setup-buildx
39-
uses: docker/setup-buildx-action@v2
39+
uses: docker/setup-buildx-action@v3
4040

4141
- name: Login to DockerHub Registry
4242
# https://github.com/marketplace/actions/docker-login
4343
# set the condition depending on whether you want to login to Docker.
4444
if: true
45-
uses: docker/login-action@v2
45+
uses: docker/login-action@v3
4646
with:
4747
username: ${{ secrets.DOCKERHUB_USERNAME }}
4848
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -51,7 +51,7 @@ jobs:
5151
# https://github.com/marketplace/actions/docker-login
5252
# set the condition depending on whether you want to login to ghcr.io.
5353
if: true
54-
uses: docker/login-action@v2
54+
uses: docker/login-action@v3
5555
with:
5656
registry: ghcr.io
5757
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)