mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-03-03 08:12:18 +08:00
Bumps the actions group with 2 updates in the / directory: [@octokit/plugin-retry](https://github.com/octokit/plugin-retry.js) and [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node). Updates `@octokit/plugin-retry` from 8.0.3 to 8.1.0 - [Release notes](https://github.com/octokit/plugin-retry.js/releases) - [Commits](https://github.com/octokit/plugin-retry.js/compare/v8.0.3...v8.1.0) Updates `@types/node` from 25.2.3 to 25.3.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@octokit/plugin-retry" dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: "@types/node" dependency-version: 25.3.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Gamero <david340804@gmail.com>
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "k8s-deploy-action",
|
|
"version": "5.0.4",
|
|
"author": "Deepak Sattiraju",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "esbuild src/run.ts --bundle --platform=node --target=node20 --format=esm --outfile=lib/index.js --banner:js=\"import { createRequire } from 'module';const require = createRequire(import.meta.url);\"",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"coverage": "vitest run --coverage",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check .",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/io": "^3.0.2",
|
|
"@actions/tool-cache": "4.0.0",
|
|
"@octokit/core": "^7.0.6",
|
|
"@octokit/plugin-retry": "^8.1.0",
|
|
"js-yaml": "4.1.1",
|
|
"minimist": "^1.2.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/minimist": "^1.2.5",
|
|
"@types/node": "^25.3.0",
|
|
"esbuild": "^0.27",
|
|
"husky": "^9.1.7",
|
|
"prettier": "^3.8.1",
|
|
"typescript": "5.9.3",
|
|
"vitest": "^4"
|
|
}
|
|
}
|