From 36d95bd3b98339f3aca01bbafeeaaa4034ec4028 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Mon, 30 Jan 2023 10:31:10 +0100 Subject: [PATCH 1/2] ci: generate releases.json on release event We are currently using the GitHub API in our setup-buildx-action to check for latest and tagged releases to make sure they exist before download. But this requires using a token to avoid rate-limit. It's fine for public runners but GHES runners don't have the `github.token` populated automatically. They need to create a PAT. This PR will solve this issue by generating and pushing a `releases.json` file in this repo when we publish a GitHub Release that will then be fetched through `raw.githubusercontent.com` endpoint on `setup-buildx-action` repo. This endpoint is better served for our purpose with 5000 requests per hour compared to the GitHub API endpoint that is limited to 60 requests per hour (unauth) and 1000 request per hour when authenticated. Also ignore .github/releases.json file on pull request event as an action in a workflow run can't trigger a new workflow run anyway. See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#example-using-more-than-one-event Signed-off-by: CrazyMax --- .github/workflows/build.yml | 4 +-- .github/workflows/docs-upstream.yml | 2 ++ .github/workflows/e2e.yml | 4 +-- .github/workflows/releases-json.yml | 55 +++++++++++++++++++++++++++++ .github/workflows/validate.yml | 5 ++- 5 files changed, 61 insertions(+), 9 deletions(-) create mode 100644 .github/workflows/releases-json.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3e369646263..c5a81ee71d8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,10 +13,8 @@ on: tags: - 'v*' pull_request: - branches: - - 'master' - - 'v[0-9]*' paths-ignore: + - '.github/releases.json' - 'README.md' - 'docs/**' diff --git a/.github/workflows/docs-upstream.yml b/.github/workflows/docs-upstream.yml index 85027678061..60b9dc8a855 100644 --- a/.github/workflows/docs-upstream.yml +++ b/.github/workflows/docs-upstream.yml @@ -19,6 +19,8 @@ on: paths: - '.github/workflows/docs-upstream.yml' - 'docs/**' + paths-ignore: + - '.github/releases.json' jobs: docs-yaml: diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 5acfa0dc2ae..e7eac1ee9fb 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -11,10 +11,8 @@ on: - 'master' - 'v[0-9]*' pull_request: - branches: - - 'master' - - 'v[0-9]*' paths-ignore: + - '.github/releases.json' - 'README.md' - 'docs/**' diff --git a/.github/workflows/releases-json.yml b/.github/workflows/releases-json.yml new file mode 100644 index 00000000000..2e09a06b486 --- /dev/null +++ b/.github/workflows/releases-json.yml @@ -0,0 +1,55 @@ +name: releases-json + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +on: + release: + types: + - released + pull_request: + paths-ignore: + - '.github/releases.json' + +jobs: + generate: + uses: crazy-max/.github/.github/workflows/releases-json.yml@2a596c917a8ad3e6203ae99b777148525a2e00d5 + with: + repository: docker/buildx + artifact_name: releases-json + filename: releases.json + secrets: inherit + + open-pr: + runs-on: ubuntu-22.04 + if: github.event_name == 'release' + needs: + - generate + steps: + - + name: Checkout + uses: actions/checkout@v3 + - + name: Download + uses: actions/download-artifact@v3 + with: + name: releases-json + path: .github + - + name: Commit changes + run: | + git add -A . + - + name: Create PR + uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 + with: + base: master + branch: releases-json/${{ github.event.release.name }} + commit-message: "github: update .github/releases.json" + signoff: true + delete-branch: true + title: "Update `.github/releases.json`" + body: | + Update `.github/releases.json` to keep in sync with GitHub Releases. + draft: false diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index b3374979371..1c6d636ab03 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -13,9 +13,8 @@ on: tags: - 'v*' pull_request: - branches: - - 'master' - - 'v[0-9]*' + paths-ignore: + - '.github/releases.json' jobs: validate: From ea4bec2bad29966898e50be3e0ce4adbffd6aa78 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Mon, 30 Jan 2023 11:36:50 +0100 Subject: [PATCH 2/2] github: update .github/releases.json Signed-off-by: CrazyMax --- .github/releases.json | 694 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 694 insertions(+) create mode 100644 .github/releases.json diff --git a/.github/releases.json b/.github/releases.json new file mode 100644 index 00000000000..4db3269d739 --- /dev/null +++ b/.github/releases.json @@ -0,0 +1,694 @@ +{ + "latest": { + "id": 90346950, + "tag_name": "v0.10.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.10.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v6.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v6.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v7.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v7.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-ppc64le.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-ppc64le.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-riscv64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-riscv64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-s390x.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-s390x.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/checksums.txt" + ] + }, + "v0.10.1": { + "id": 90346950, + "tag_name": "v0.10.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.10.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.darwin-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v6.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v6.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v7.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm-v7.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-ppc64le.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-ppc64le.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-riscv64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-riscv64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-s390x.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.linux-s390x.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/buildx-v0.10.1.windows-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.1/checksums.txt" + ] + }, + "v0.10.0": { + "id": 88388110, + "tag_name": "v0.10.0", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.10.0", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.darwin-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.darwin-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.darwin-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.darwin-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-arm-v6.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-arm-v6.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-arm-v7.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-arm-v7.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-ppc64le.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-ppc64le.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-riscv64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-riscv64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-s390x.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.linux-s390x.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.windows-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.windows-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.windows-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/buildx-v0.10.0.windows-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0/checksums.txt" + ] + }, + "v0.10.0-rc3": { + "id": 88191592, + "tag_name": "v0.10.0-rc3", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.10.0-rc3", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.darwin-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.darwin-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.darwin-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.darwin-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-arm-v6.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-arm-v6.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-arm-v7.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-arm-v7.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-ppc64le.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-ppc64le.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-riscv64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-riscv64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-s390x.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.linux-s390x.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.windows-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.windows-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.windows-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/buildx-v0.10.0-rc3.windows-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc3/checksums.txt" + ] + }, + "v0.10.0-rc2": { + "id": 86248476, + "tag_name": "v0.10.0-rc2", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.10.0-rc2", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.darwin-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.darwin-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.darwin-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.darwin-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-arm-v6.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-arm-v6.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-arm-v7.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-arm-v7.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-ppc64le.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-ppc64le.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-riscv64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-riscv64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-s390x.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.linux-s390x.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.windows-amd64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.windows-amd64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.windows-arm64.provenance.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/buildx-v0.10.0-rc2.windows-arm64.sbom.json", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc2/checksums.txt" + ] + }, + "v0.10.0-rc1": { + "id": 85963900, + "tag_name": "v0.10.0-rc1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.10.0-rc1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/buildx-v0.10.0-rc1.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.10.0-rc1/checksums.txt" + ] + }, + "v0.9.1": { + "id": 74760068, + "tag_name": "v0.9.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.9.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.9.1/checksums.txt" + ] + }, + "v0.9.0": { + "id": 74546589, + "tag_name": "v0.9.0", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.9.0", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.9.0/buildx-v0.9.0.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.9.0/checksums.txt" + ] + }, + "v0.9.0-rc2": { + "id": 74052235, + "tag_name": "v0.9.0-rc2", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.9.0-rc2", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/buildx-v0.9.0-rc2.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc2/checksums.txt" + ] + }, + "v0.9.0-rc1": { + "id": 73389692, + "tag_name": "v0.9.0-rc1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.9.0-rc1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/buildx-v0.9.0-rc1.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.9.0-rc1/checksums.txt" + ] + }, + "v0.8.2": { + "id": 63479740, + "tag_name": "v0.8.2", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.8.2", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.8.2/buildx-v0.8.2.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.8.2/checksums.txt" + ] + }, + "v0.8.1": { + "id": 62289050, + "tag_name": "v0.8.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.8.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.8.1/buildx-v0.8.1.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.8.1/checksums.txt" + ] + }, + "v0.8.0": { + "id": 61423774, + "tag_name": "v0.8.0", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.8.0", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.8.0/buildx-v0.8.0.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.8.0/checksums.txt" + ] + }, + "v0.8.0-rc1": { + "id": 60513568, + "tag_name": "v0.8.0-rc1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.8.0-rc1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/buildx-v0.8.0-rc1.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.8.0-rc1/checksums.txt" + ] + }, + "v0.7.1": { + "id": 54098347, + "tag_name": "v0.7.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.7.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.7.1/checksums.txt" + ] + }, + "v0.7.0": { + "id": 53109422, + "tag_name": "v0.7.0", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.7.0", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.7.0/buildx-v0.7.0.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.7.0/checksums.txt" + ] + }, + "v0.7.0-rc1": { + "id": 52726324, + "tag_name": "v0.7.0-rc1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.7.0-rc1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/buildx-v0.7.0-rc1.windows-arm64.exe", + "https://github.com/docker/buildx/releases/download/v0.7.0-rc1/checksums.txt" + ] + }, + "v0.6.3": { + "id": 48691641, + "tag_name": "v0.6.3", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.6.3", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.6.3/buildx-v0.6.3.windows-arm64.exe" + ] + }, + "v0.6.2": { + "id": 48207405, + "tag_name": "v0.6.2", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.6.2", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.6.2/buildx-v0.6.2.windows-arm64.exe" + ] + }, + "v0.6.1": { + "id": 47064772, + "tag_name": "v0.6.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.6.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.windows-arm64.exe" + ] + }, + "v0.6.0": { + "id": 46343260, + "tag_name": "v0.6.0", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.6.0", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.6.0/buildx-v0.6.0.windows-arm64.exe" + ] + }, + "v0.6.0-rc1": { + "id": 46230351, + "tag_name": "v0.6.0-rc1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.6.0-rc1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.linux-riscv64", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.windows-amd64.exe", + "https://github.com/docker/buildx/releases/download/v0.6.0-rc1/buildx-v0.6.0-rc1.windows-arm64.exe" + ] + }, + "v0.5.1": { + "id": 35276550, + "tag_name": "v0.5.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.5.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.darwin-universal", + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.windows-amd64.exe" + ] + }, + "v0.5.0": { + "id": 35268960, + "tag_name": "v0.5.0", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.5.0", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.darwin-arm64", + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.darwin-universal", + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.5.0/buildx-v0.5.0.windows-amd64.exe" + ] + }, + "v0.5.0-rc1": { + "id": 35015334, + "tag_name": "v0.5.0-rc1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.5.0-rc1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.5.0-rc1/buildx-v0.5.0-rc1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.5.0-rc1/buildx-v0.5.0-rc1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.5.0-rc1/buildx-v0.5.0-rc1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.5.0-rc1/buildx-v0.5.0-rc1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.5.0-rc1/buildx-v0.5.0-rc1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.5.0-rc1/buildx-v0.5.0-rc1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.5.0-rc1/buildx-v0.5.0-rc1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.5.0-rc1/buildx-v0.5.0-rc1.windows-amd64.exe" + ] + }, + "v0.4.2": { + "id": 30007794, + "tag_name": "v0.4.2", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.4.2", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.4.2/buildx-v0.4.2.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.4.2/buildx-v0.4.2.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.4.2/buildx-v0.4.2.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.4.2/buildx-v0.4.2.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.4.2/buildx-v0.4.2.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.4.2/buildx-v0.4.2.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.4.2/buildx-v0.4.2.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.4.2/buildx-v0.4.2.windows-amd64.exe" + ] + }, + "v0.4.1": { + "id": 26067509, + "tag_name": "v0.4.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.4.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.4.1/buildx-v0.4.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.4.1/buildx-v0.4.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.4.1/buildx-v0.4.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.4.1/buildx-v0.4.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.4.1/buildx-v0.4.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.4.1/buildx-v0.4.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.4.1/buildx-v0.4.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.4.1/buildx-v0.4.1.windows-amd64.exe" + ] + }, + "v0.4.0": { + "id": 26028174, + "tag_name": "v0.4.0", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.4.0", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.4.0/buildx-v0.4.0.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.4.0/buildx-v0.4.0.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.4.0/buildx-v0.4.0.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.4.0/buildx-v0.4.0.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.4.0/buildx-v0.4.0.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.4.0/buildx-v0.4.0.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.4.0/buildx-v0.4.0.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.4.0/buildx-v0.4.0.windows-amd64.exe" + ] + }, + "v0.3.1": { + "id": 20316235, + "tag_name": "v0.3.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.3.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.3.1/buildx-v0.3.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.3.1/buildx-v0.3.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.3.1/buildx-v0.3.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.3.1/buildx-v0.3.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.3.1/buildx-v0.3.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.3.1/buildx-v0.3.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.3.1/buildx-v0.3.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.3.1/buildx-v0.3.1.windows-amd64.exe" + ] + }, + "v0.3.0": { + "id": 19029664, + "tag_name": "v0.3.0", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.3.0", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.windows-amd64.exe" + ] + }, + "v0.2.2": { + "id": 17671545, + "tag_name": "v0.2.2", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.2.2", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.2.2/buildx-v0.2.2.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.2.2/buildx-v0.2.2.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.2.2/buildx-v0.2.2.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.2.2/buildx-v0.2.2.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.2.2/buildx-v0.2.2.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.2.2/buildx-v0.2.2.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.2.2/buildx-v0.2.2.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.2.2/buildx-v0.2.2.windows-amd64.exe" + ] + }, + "v0.2.1": { + "id": 17582885, + "tag_name": "v0.2.1", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.2.1", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.2.1/buildx-v0.2.1.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.2.1/buildx-v0.2.1.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.2.1/buildx-v0.2.1.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.2.1/buildx-v0.2.1.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.2.1/buildx-v0.2.1.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.2.1/buildx-v0.2.1.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.2.1/buildx-v0.2.1.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.2.1/buildx-v0.2.1.windows-amd64.exe" + ] + }, + "v0.2.0": { + "id": 16965310, + "tag_name": "v0.2.0", + "html_url": "https://github.com/docker/buildx/releases/tag/v0.2.0", + "assets": [ + "https://github.com/docker/buildx/releases/download/v0.2.0/buildx-v0.2.0.darwin-amd64", + "https://github.com/docker/buildx/releases/download/v0.2.0/buildx-v0.2.0.linux-amd64", + "https://github.com/docker/buildx/releases/download/v0.2.0/buildx-v0.2.0.linux-arm-v6", + "https://github.com/docker/buildx/releases/download/v0.2.0/buildx-v0.2.0.linux-arm-v7", + "https://github.com/docker/buildx/releases/download/v0.2.0/buildx-v0.2.0.linux-arm64", + "https://github.com/docker/buildx/releases/download/v0.2.0/buildx-v0.2.0.linux-ppc64le", + "https://github.com/docker/buildx/releases/download/v0.2.0/buildx-v0.2.0.linux-s390x", + "https://github.com/docker/buildx/releases/download/v0.2.0/buildx-v0.2.0.windows-amd64.exe" + ] + } +} \ No newline at end of file