mirror of
https://github.com/Azure/setup-helm.git
synced 2026-02-04 21:05:15 +00:00
Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `2.0.2` | `3.0.0` | | [@actions/exec](https://github.com/actions/toolkit/tree/HEAD/packages/exec) | `2.0.0` | `3.0.0` | | [@actions/io](https://github.com/actions/toolkit/tree/HEAD/packages/io) | `2.0.0` | `3.0.2` | | [@actions/tool-cache](https://github.com/actions/toolkit/tree/HEAD/packages/tool-cache) | `3.0.0` | `4.0.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.9` | `25.2.0` | | [prettier](https://github.com/prettier/prettier) | `3.8.0` | `3.8.1` | Updates `@actions/core` from 2.0.2 to 3.0.0 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Updates `@actions/exec` from 2.0.0 to 3.0.0 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/exec/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/exec) Updates `@actions/io` from 2.0.0 to 3.0.2 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/io/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/io) Updates `@actions/tool-cache` from 3.0.0 to 4.0.0 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/tool-cache/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/@actions/cache@4.0.0/packages/tool-cache) Updates `@types/node` from 25.0.9 to 25.2.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `prettier` from 3.8.0 to 3.8.1 - [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.8.0...3.8.1) --- updated-dependencies: - dependency-name: "@actions/core" dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: "@actions/exec" dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: "@actions/io" dependency-version: 3.0.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: "@actions/tool-cache" dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: "@types/node" dependency-version: 25.2.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: actions - dependency-name: prettier dependency-version: 3.8.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
905 B
JSON
36 lines
905 B
JSON
{
|
|
"name": "setuphelm",
|
|
"version": "4.3.1",
|
|
"private": true,
|
|
"description": "Setup helm",
|
|
"author": "Anumita Shenoy",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/io": "^3.0.2",
|
|
"@actions/tool-cache": "4.0.0",
|
|
"@octokit/action": "^8.0.4",
|
|
"semver": "^7.7.3"
|
|
},
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "ncc build src/index.ts -o lib",
|
|
"test": "jest",
|
|
"test-coverage": "jest --coverage",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check .",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^25.2.0",
|
|
"@vercel/ncc": "^0.38.4",
|
|
"husky": "^9.1.7",
|
|
"jest": "^30.2.0",
|
|
"prettier": "^3.8.1",
|
|
"ts-jest": "^29.4.6",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|