Skip to content

Commit 325c726

Browse files
authored
Update docker action
1 parent aedea61 commit 325c726

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/docker-release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
steps:
2626
- name: Checkout the repo
2727
uses: actions/checkout@v4
28-
28+
2929
- name: Set up QEMU
30-
uses: docker/setup-qemu-action@v2
30+
uses: docker/setup-qemu-action@v3
3131

3232
- name: Set up Docker Buildx
33-
uses: docker/setup-buildx-action@v2
33+
uses: docker/setup-buildx-action@v3
3434
with:
3535
install: true
36-
36+
3737
- name: Set Version and Quality
3838
run: |
3939
set -e
@@ -43,7 +43,7 @@ jobs:
4343
4444
- name: Docker meta
4545
id: meta
46-
uses: docker/metadata-action@v4
46+
uses: docker/metadata-action@v5
4747
with:
4848
images: |
4949
gitpod/openvscode-server
@@ -54,13 +54,13 @@ jobs:
5454
type=raw,value=nightly,enable=${{ inputs.stable == false }}
5555
5656
- name: Login to DockerHub
57-
uses: docker/login-action@v2
57+
uses: docker/login-action@v3
5858
with:
5959
username: ${{ secrets.DOCKERHUB_USERNAME }}
6060
password: ${{ secrets.DOCKERHUB_TOKEN }}
61-
61+
6262
- name: Build and push
63-
uses: docker/build-push-action@v3
63+
uses: docker/build-push-action@v6
6464
with:
6565
push: true
6666
context: .

0 commit comments

Comments
 (0)