Skip to content

Commit 76e29eb

Browse files
authored
Merge pull request #21578 from dvdksn/docker-setup-action
build: replace crazy-max/ghaction-setup-docker with docker/setup-docker-action
2 parents 047a628 + 0a3bfc3 commit 76e29eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/manuals/build/ci/github-actions/multi-platform.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ them. To load a multi-platform image, you need to enable the containerd image
5353
store option for the Docker Engine.
5454
5555
There is no way to configure the default Docker setup in the GitHub Actions
56-
runners directly, but you can use the `crazy-max/ghaction-setup-docker` action
57-
to customize the Docker Engine and CLI settings for a job.
56+
runners directly, but you can use `docker/setup-docker-action` to customize the
57+
Docker Engine and CLI settings for a job.
5858

5959
The following example workflow enables the containerd image store, builds a
6060
multi-platform image, and loads the results into the GitHub runner's local
@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- name: Set up Docker
74-
uses: crazy-max/ghaction-setup-docker@v3
74+
uses: docker/setup-docker-action@v4
7575
with:
7676
daemon-config: |
7777
{

0 commit comments

Comments
 (0)