mirror of
https://github.com/Azure/setup-helm.git
synced 2025-07-15 02:00:36 +00:00
Bumps the actions group with 3 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) and [prettier](https://github.com/prettier/prettier). Updates `@types/node` from 24.0.3 to 24.0.7 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `jest` from 30.0.2 to 30.0.3 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.0.3/packages/jest) Updates `prettier` from 3.6.0 to 3.6.2 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.6.0...3.6.2) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 24.0.7 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: actions - dependency-name: jest dependency-version: 30.0.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: actions - dependency-name: prettier dependency-version: 3.6.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
886 B
JSON
35 lines
886 B
JSON
{
|
|
"name": "setuphelm",
|
|
"version": "4.3.0",
|
|
"private": true,
|
|
"description": "Setup helm",
|
|
"author": "Anumita Shenoy",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.2",
|
|
"@actions/tool-cache": "2.0.2",
|
|
"@octokit/action": "^8.0.2",
|
|
"semver": "^7.7.2"
|
|
},
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"prebuild": "npm i ncc",
|
|
"build": "ncc build src/index.ts -o lib",
|
|
"test": "jest",
|
|
"test-coverage": "jest --coverage",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check ."
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.0.7",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"jest": "^30.0.3",
|
|
"prettier": "^3.6.2",
|
|
"ts-jest": "^29.4.0",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|