No description
Find a file
dependabot[bot] d7a4485e0c
Bump @actions/core from 1.6.0 to 1.8.2
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.6.0 to 1.8.2.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-16 06:07:43 +00:00
.github Bump all Docker actions to latest major 2022-05-05 19:45:06 +02:00
dist chore: update dev dependencies and workflow 2022-03-22 20:15:50 +01:00
src chore: update dev dependencies and workflow 2022-03-22 20:15:50 +01:00
.dockerignore Enhance workflow 2021-04-02 11:47:56 +02:00
.editorconfig Initial commit (docker/build-push-action#87) 2020-08-18 18:19:47 +02:00
.eslintrc.json chore: update dev dependencies and workflow 2022-03-22 20:15:50 +01:00
.gitattributes Initial commit (docker/build-push-action#87) 2020-08-18 18:19:47 +02:00
.gitignore Initial commit (docker/build-push-action#87) 2020-08-18 18:19:47 +02:00
.prettierrc.json Initial commit (docker/build-push-action#87) 2020-08-18 18:19:47 +02:00
action.yml Node 16 as default runtime 2022-03-22 20:21:18 +01:00
dev.Dockerfile Node 16 as default runtime 2022-03-22 20:21:18 +01:00
docker-bake.hcl chore: update dev dependencies and workflow 2022-03-22 20:15:50 +01:00
LICENSE Initial commit (docker/build-push-action#87) 2020-08-18 18:19:47 +02:00
package.json Bump @actions/core from 1.6.0 to 1.8.2 2022-05-16 06:07:43 +00:00
README.md Bump all Docker actions to latest major 2022-05-05 19:45:06 +02:00
tsconfig.json chore: update dev dependencies and workflow 2022-03-22 20:15:50 +01:00
yarn.lock Bump @actions/core from 1.6.0 to 1.8.2 2022-05-16 06:07:43 +00:00

GitHub release GitHub marketplace CI workflow

About

GitHub Action to install QEMU static binaries.

Screenshot


Usage

name: ci

on:
  push:

jobs:
  qemu:
    runs-on: ubuntu-latest
    steps:
      -
        name: Set up QEMU
        uses: docker/setup-qemu-action@v2

Customizing

inputs

Following inputs can be used as step.with keys

Name Type Description
image String QEMU static binaries Docker image (default tonistiigi/binfmt:latest)
platforms String Platforms to install (e.g. arm64,riscv64,arm ; default all)

outputs

Following outputs are available

Name Type Description
platforms String Available platforms (comma separated)

Keep up-to-date with GitHub Dependabot

Since Dependabot has native GitHub Actions support, to enable it on your GitHub repo all you need to do is add the .github/dependabot.yml file:

version: 2
updates:
  # Maintain dependencies for GitHub Actions
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "daily"