From 30d8a59ee0ba8f9e08de3d6a69915bb4e33fc977 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sat, 28 Jan 2023 14:03:18 +0100 Subject: [PATCH] fix action version in README Signed-off-by: CrazyMax --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9679557..21ae407 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ to pin to Buildx v0.10.0: ```yaml - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v2 with: version: v0.10.0 ``` @@ -82,7 +82,7 @@ To pin to a specific version of BuildKit, use the `image` option in the ```yaml - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v2 with: driver-opts: image=moby/buildkit:v0.11.0 ``` @@ -194,7 +194,7 @@ To get a higher rate limit, you can [generate a personal access token on github. and pass it as the `github_token` input for the action: ```yaml -uses: docker/setup-buildx-action@v3 +uses: docker/setup-buildx-action@v2 with: github_token: ${{ secrets.GH_DOTCOM_TOKEN }} version: v0.10.1