setup-buildx-action: Cannot find buildx v0.9.1 release
Behaviour
Running this action is returning the next message: “Cannot find buildx v0.9.1 release”
This is the step:
name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2.2.1
with:
version: v0.9.1
And this is what RUN returns:
with:
version: v0.9.1
driver: docker-container
buildkitd-flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
install: false
use: true
I’ve been using this version since a few weeks. Then all of the sudden this error shows up.
Does anyone knows what’s going on? Thanks in advance
About this issue
- Original URL
- State: closed
- Created a year ago
- Reactions: 21
- Comments: 19 (9 by maintainers)
Yeah even with
curl -L -H "Accept: application/vnd.github+json" https://github.com/docker/buildx/releases/tag/v0.10.1I don’t get back JSON as I would expect…
I bet this is going to become a systemic issue - I wonder if GitHub is already aware but I don’t know where their central status/reporting is for the API at the moment… perhaps it’ll correct itself then.
Should be fixed with
docker/setup-buildx-action@v2ordocker/setup-buildx-action@v2.3.0Looks like GitHub fixed the issue with the endpoint we were using before 🙈:
@crazy-max I got one for you if this helps:
@farvour I’m not sure, we are just using the GitHub Actions Toolkit: https://github.com/actions/toolkit/tree/main/packages/http-client
I guess many actions could be broken atm 😟
https://github.com/actions/toolkit/blob/1589a5c066fbe34ed1c828e9b81b9f206f9a3a40/packages/http-client/src/index.ts#L231-L249
cc @thboop @brcrista
Sure @farvour