Skip to content

Commit 992b016

Browse files
committed
Upgrade docker/build-push-action to v6
1 parent 7eccc91 commit 992b016

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

.github/workflows/ci.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,14 @@ jobs:
3232
ref: "${{ github.event.pull_request.head.sha }}"
3333
- name: Set up Docker Buildx
3434
uses: docker/setup-buildx-action@v3
35-
with:
36-
driver-opts: image=moby/buildkit:v0.11.6
3735
- name: Login to GitHub Container Registry
3836
uses: docker/login-action@v3
3937
with:
4038
registry: ghcr.io
4139
username: "${{ env.GH_CONTAINER_REGISTRY_USERNAME }}"
4240
password: "${{ secrets.GH_CONTAINER_REGISTRY_TOKEN }}"
4341
- name: Build and push container
44-
uses: docker/build-push-action@v5
42+
uses: docker/build-push-action@v6
4543
with:
4644
context: compiler/base/
4745
file: compiler/base/Dockerfile

.github/workflows/cron.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ jobs:
2828
uses: actions/checkout@v4
2929
- name: Set up Docker Buildx
3030
uses: docker/setup-buildx-action@v3
31-
with:
32-
driver-opts: image=moby/buildkit:v0.11.6
3331
- name: Login to GitHub Container Registry
3432
uses: docker/login-action@v3
3533
with:
@@ -42,7 +40,7 @@ jobs:
4240
username: "${{ env.DOCKER_HUB_USERNAME }}"
4341
password: "${{ secrets.DOCKER_HUB_TOKEN }}"
4442
- name: Build and push container
45-
uses: docker/build-push-action@v5
43+
uses: docker/build-push-action@v6
4644
with:
4745
context: compiler/base/
4846
file: compiler/base/Dockerfile

ci/workflows.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ components:
2020
- docker_buildx: &docker_buildx
2121
name: "Set up Docker Buildx"
2222
uses: docker/setup-buildx-action@v3
23-
with:
24-
driver-opts: >-
25-
image=moby/buildkit:v0.11.6
2623

2724
- login_ghcr: &login_ghcr
2825
name: "Login to GitHub Container Registry"
@@ -52,7 +49,7 @@ components:
5249

5350
- build_compiler_containers: &build_compiler_containers
5451
name: "Build and push container"
55-
uses: docker/build-push-action@v5
52+
uses: docker/build-push-action@v6
5653
with:
5754
context: compiler/base/
5855
file: compiler/base/Dockerfile

0 commit comments

Comments
 (0)