mirror of
https://github.com/docker/setup-buildx-action
synced 2024-11-10 06:01:40 +00:00
e80b8cc6d8
Bumps [@actions/tool-cache](https://github.com/actions/toolkit/tree/HEAD/packages/tool-cache) from 1.7.0 to 1.7.1. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/tool-cache/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/tool-cache) --- updated-dependencies: - dependency-name: "@actions/tool-cache" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "docker-setup-buildx",
|
|
"description": "Set up Docker Buildx",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"test": "jest --coverage",
|
|
"pre-checkin": "yarn run format && yarn run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/docker/setup-buildx-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker",
|
|
"buildx"
|
|
],
|
|
"author": "Docker",
|
|
"contributors": [
|
|
{
|
|
"name": "CrazyMax",
|
|
"url": "https://crazymax.dev"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.4.0",
|
|
"@actions/exec": "^1.1.0",
|
|
"@actions/http-client": "^1.0.11",
|
|
"@actions/tool-cache": "^1.7.1",
|
|
"semver": "^7.3.5",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.3",
|
|
"@types/node": "^14.0.14",
|
|
"@vercel/ncc": "^0.23.0",
|
|
"dotenv": "^8.2.0",
|
|
"jest": "^26.1.0",
|
|
"jest-circus": "^26.1.0",
|
|
"jest-runtime": "^26.1.0",
|
|
"prettier": "^2.0.5",
|
|
"ts-jest": "^26.1.1",
|
|
"typescript": "^3.9.5",
|
|
"typescript-formatter": "^7.2.2"
|
|
}
|
|
}
|