Skip to content

Commit d9d80fd

Browse files
committed
1 parent b10ddd2 commit d9d80fd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/actions/run-in-docker-action/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ inputs:
1414
runs:
1515
using: "composite"
1616
steps:
17-
- uses: docker/setup-buildx-action@v2
17+
- uses: docker/setup-buildx-action@v3
1818

19-
- uses: docker/build-push-action@v4
19+
- uses: docker/build-push-action@v5
2020
id: main_builder
2121
continue-on-error: true
2222
with:
@@ -26,7 +26,7 @@ runs:
2626
load: true
2727
cache-from: type=gha
2828

29-
- uses: docker/build-push-action@v4
29+
- uses: docker/build-push-action@v5
3030
id: retry_builder
3131
if: steps.main_builder.outcome == 'failure'
3232
with:

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@v2
50+
uses: docker/setup-buildx-action@v3
5151
with:
5252
# See: https://github.com/moby/buildkit/issues/3969.
5353
driver-opts: |
5454
network=host
5555
5656
- name: Build container
57-
uses: docker/build-push-action@v4
57+
uses: docker/build-push-action@v5
5858
with:
5959
file: ./ci/linux-debian.Dockerfile
6060
tags: linux-debian-image

0 commit comments

Comments
 (0)