{"id":13567804,"url":"https://github.com/docker/setup-qemu-action","last_synced_at":"2025-05-13T22:03:55.193Z","repository":{"id":37482829,"uuid":"288487894","full_name":"docker/setup-qemu-action","owner":"docker","description":"GitHub Action to install QEMU static binaries","archived":false,"fork":false,"pushed_at":"2025-04-25T06:58:03.000Z","size":13091,"stargazers_count":500,"open_issues_count":10,"forks_count":75,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-05-09T10:15:26.590Z","etag":null,"topics":["binfmt-misc","docker","github-actions","github-actions-docker","qemu"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/docker-setup-qemu","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/docker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-08-18T15:04:37.000Z","updated_at":"2025-05-03T02:48:30.000Z","dependencies_parsed_at":"2024-01-05T11:39:01.929Z","dependency_job_id":"82e6632b-a8c1-4873-90d3-8942de5fa204","html_url":"https://github.com/docker/setup-qemu-action","commit_stats":{"total_commits":130,"total_committers":3,"mean_commits":"43.333333333333336","dds":"0.30000000000000004","last_synced_commit":"719c55c4a5a93233ce33aa9366dc90396d60e0ee"},"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker%2Fsetup-qemu-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker%2Fsetup-qemu-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker%2Fsetup-qemu-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker%2Fsetup-qemu-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/docker","download_url":"https://codeload.github.com/docker/setup-qemu-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254036812,"owners_count":22003653,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["binfmt-misc","docker","github-actions","github-actions-docker","qemu"],"created_at":"2024-08-01T13:02:44.076Z","updated_at":"2025-05-13T22:03:55.156Z","avatar_url":"https://github.com/docker.png","language":"TypeScript","readme":"[![GitHub release](https://img.shields.io/github/release/docker/setup-qemu-action.svg?style=flat-square)](https://github.com/docker/setup-qemu-action/releases/latest)\n[![GitHub marketplace](https://img.shields.io/badge/marketplace-docker--setup--qemu-blue?logo=github\u0026style=flat-square)](https://github.com/marketplace/actions/docker-setup-qemu)\n[![CI workflow](https://img.shields.io/github/actions/workflow/status/docker/setup-qemu-action/ci.yml?branch=master\u0026label=ci\u0026logo=github\u0026style=flat-square)](https://github.com/docker/setup-qemu-action/actions?workflow=ci)\n[![Test workflow](https://img.shields.io/github/actions/workflow/status/docker/setup-qemu-action/test.yml?branch=master\u0026label=test\u0026logo=github\u0026style=flat-square)](https://github.com/docker/setup-qemu-action/actions?workflow=test)\n[![Codecov](https://img.shields.io/codecov/c/github/docker/setup-qemu-action?logo=codecov\u0026style=flat-square)](https://codecov.io/gh/docker/setup-qemu-action)\n\n## About\n\nGitHub Action to install [QEMU](https://github.com/qemu/qemu) static binaries.\n\n![Screenshot](.github/setup-qemu-action.png)\n\n___\n\n* [Usage](#usage)\n* [Customizing](#customizing)\n  * [inputs](#inputs)\n  * [outputs](#outputs)\n* [Contributing](#contributing)\n\n## Usage\n\n```yaml\nname: ci\n\non:\n  push:\n\njobs:\n  qemu:\n    runs-on: ubuntu-latest\n    steps:\n      -\n        name: Set up QEMU\n        uses: docker/setup-qemu-action@v3\n```\n\n\u003e [!NOTE]\n\u003e If you are using [`docker/setup-buildx-action`](https://github.com/docker/setup-buildx-action),\n\u003e this action should come before it:\n\u003e \n\u003e ```yaml\n\u003e     -\n\u003e       name: Set up QEMU\n\u003e       uses: docker/setup-qemu-action@v3\n\u003e     -\n\u003e       name: Set up Docker Buildx\n\u003e       uses: docker/setup-buildx-action@v3\n\u003e ```\n\n## Customizing\n\n### inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name          | Type   | Default                                                                       | Description                                        |\n|---------------|--------|-------------------------------------------------------------------------------|----------------------------------------------------|\n| `image`       | String | [`tonistiigi/binfmt:latest`](https://hub.docker.com/r/tonistiigi/binfmt/tags) | QEMU static binaries Docker image                  |\n| `platforms`   | String | `all`                                                                         | Platforms to install (e.g., `arm64,riscv64,arm`)   |\n| `cache-image` | Bool   | `true`                                                                        | Cache binfmt image to GitHub Actions cache backend |\n\n### outputs\n\nThe following outputs are available:\n\n| Name          | Type    | Description                           |\n|---------------|---------|---------------------------------------|\n| `platforms`   | String  | Available platforms (comma separated) |\n\n## Contributing\n\nWant to contribute? Awesome! You can find information about contributing to\nthis project in the [CONTRIBUTING.md](/.github/CONTRIBUTING.md)\n","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdocker%2Fsetup-qemu-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdocker%2Fsetup-qemu-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdocker%2Fsetup-qemu-action/lists"}