Skip to content

Commit eb0472e

Browse files
committed
update to docker/setup-buildx-action@v3
for intermittent cache failures example error: https://github.com/webrecorder/browsertrix/actions/runs/14362787038/job/40268326912?pr=2538 see docker/buildx#681 for relevant buildx issue the breaking change moving from v2 to v3 is the minimum node version is bumped to 20, which is the minimum version we're building with already (https://github.com/docker/setup-buildx-action/releases/tag/v3.0.0)
1 parent 9ea55e9 commit eb0472e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/deploy-dev.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v3
1212

1313
- name: Set up Docker Buildx
14-
uses: docker/setup-buildx-action@v2
14+
uses: docker/setup-buildx-action@v3
1515
with:
1616
driver-opts: network=host
1717

.github/workflows/frontend-lint-test-build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ jobs:
286286

287287
# Check build:
288288
- name: Set up Docker Buildx
289-
uses: docker/setup-buildx-action@v2
289+
uses: docker/setup-buildx-action@v3
290290
with:
291291
driver-opts: network=host
292292

.github/workflows/k3d-ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/checkout@v3
6060

6161
- name: Set up Docker Buildx
62-
uses: docker/setup-buildx-action@v2
62+
uses: docker/setup-buildx-action@v3
6363
with:
6464
driver-opts: network=host
6565

.github/workflows/k3d-nightly-ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/checkout@v3
4343

4444
- name: Set up Docker Buildx
45-
uses: docker/setup-buildx-action@v2
45+
uses: docker/setup-buildx-action@v3
4646
with:
4747
driver-opts: network=host
4848

.github/workflows/microk8s-ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v3
2626

2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@v2
28+
uses: docker/setup-buildx-action@v3
2929
with:
3030
driver-opts: network=host
3131

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
-
2121
name: Set up Docker Buildx
22-
uses: docker/setup-buildx-action@v2
22+
uses: docker/setup-buildx-action@v3
2323

2424
-
2525
name: Login to Docker Hub

0 commit comments

Comments
 (0)