mirror of
https://github.com/docker/setup-docker-action.git
synced 2026-04-25 15:00:42 +02:00
d3d29bf6e5
Bumps [@docker/actions-toolkit](https://github.com/docker/actions-toolkit) from 0.77.0 to 0.89.0. - [Release notes](https://github.com/docker/actions-toolkit/releases) - [Commits](https://github.com/docker/actions-toolkit/compare/v0.77.0...v0.89.0) --- updated-dependencies: - dependency-name: "@docker/actions-toolkit" dependency-version: 0.79.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"name": "docker-setup-docker",
|
|
"description": "Set up Docker for use in GitHub Actions by downloading and installing a version of Docker CE",
|
|
"type": "module",
|
|
"main": "src/main.ts",
|
|
"scripts": {
|
|
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs --sourcemap --minify && yarn run license",
|
|
"lint": "eslint --max-warnings=0 .",
|
|
"format": "eslint --fix .",
|
|
"test": "vitest run",
|
|
"license": "generate-license-file --input package.json --output dist/licenses.txt --overwrite --ci --no-spinner --eol lf"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/docker/setup-docker-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker",
|
|
"engine"
|
|
],
|
|
"author": "Docker Inc.",
|
|
"license": "Apache-2.0",
|
|
"packageManager": "yarn@4.9.2",
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.0",
|
|
"@docker/actions-toolkit": "^0.89.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.3",
|
|
"@types/node": "^24.11.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
"@typescript-eslint/parser": "^8.56.1",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"@vitest/eslint-plugin": "^1.6.9",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^9.39.3",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.5",
|
|
"generate-license-file": "^4.1.1",
|
|
"globals": "^17.3.0",
|
|
"prettier": "^3.8.1",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|