mirror of
https://github.com/Azure/setup-helm.git
synced 2025-07-15 10:10:42 +00:00
Bumps the actions group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `1.10.1` | `1.11.1` | | [@octokit/action](https://github.com/octokit/action.js) | `6.0.7` | `7.0.0` | | [semver](https://github.com/npm/node-semver) | `7.5.4` | `7.6.3` | | [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.11` | `29.5.13` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.8` | `22.7.4` | | [@vercel/ncc](https://github.com/vercel/ncc) | `0.38.1` | `0.38.2` | | [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.3` | | [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.2` | `29.2.5` | | [typescript](https://github.com/microsoft/TypeScript) | `5.3.3` | `5.6.2` | Updates `@actions/core` from 1.10.1 to 1.11.1 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Updates `@octokit/action` from 6.0.7 to 7.0.0 - [Release notes](https://github.com/octokit/action.js/releases) - [Commits](https://github.com/octokit/action.js/compare/v6.0.7...v7.0.0) Updates `semver` from 7.5.4 to 7.6.3 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v7.5.4...v7.6.3) Updates `@types/jest` from 29.5.11 to 29.5.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `@types/node` from 20.11.8 to 22.7.4 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@vercel/ncc` from 0.38.1 to 0.38.2 - [Release notes](https://github.com/vercel/ncc/releases) - [Commits](https://github.com/vercel/ncc/compare/0.38.1...0.38.2) Updates `prettier` from 3.2.5 to 3.3.3 - [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.2.5...3.3.3) Updates `ts-jest` from 29.1.2 to 29.2.5 - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/kulshekhar/ts-jest/compare/v29.1.2...v29.2.5) Updates `typescript` from 5.3.3 to 5.6.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.3.3...v5.6.2) --- updated-dependencies: - dependency-name: "@actions/core" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: "@octokit/action" dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: semver dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: "@types/jest" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: actions - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-major dependency-group: actions - dependency-name: "@vercel/ncc" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: actions - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor dependency-group: actions - dependency-name: ts-jest dependency-type: direct:development update-type: version-update:semver-minor dependency-group: actions - dependency-name: typescript 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>
35 lines
885 B
JSON
35 lines
885 B
JSON
{
|
|
"name": "setuphelm",
|
|
"version": "4.2.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.1",
|
|
"@octokit/action": "^7.0.0",
|
|
"semver": "^7.6.3"
|
|
},
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"prebuild": "npm i ncc",
|
|
"build": "ncc build src/run.ts -o lib",
|
|
"test": "jest",
|
|
"test-coverage": "jest --coverage",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check ."
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.13",
|
|
"@types/node": "^22.7.4",
|
|
"@vercel/ncc": "^0.38.2",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.3.3",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.6.2"
|
|
}
|
|
}
|