mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-14 05:50:31 +00:00
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@actions/glob](https://redirect.github.com/actions/toolkit/tree/main/packages/glob) ([source](https://redirect.github.com/actions/toolkit/tree/HEAD/packages/glob)) | [`^0.6.0` → `^0.7.0`](https://renovatebot.com/diffs/npm/@actions%2fglob/0.6.1/0.7.0) |  |  | --- ### Release Notes <details> <summary>actions/toolkit (@​actions/glob)</summary> ### [`v0.7.0`](https://redirect.github.com/actions/toolkit/blob/HEAD/packages/glob/RELEASES.md#070) - Bump `minimatch` from `^3.0.4` to `^10.2.5` [#​2355](https://redirect.github.com/actions/toolkit/pull/2355) - Bump `undici` from `6.23.0` to `6.24.0` [#​2345](https://redirect.github.com/actions/toolkit/pull/2345) - Bump `brace-expansion` in `/packages/glob` [#​2369](https://redirect.github.com/actions/toolkit/pull/2369) </details> --- ### Configuration 📅 **Schedule**: (in timezone America/Chicago) - Branch creation - Only on Friday (`* * * * 5`) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/jdx/mise-action). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNTkuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE1OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "mise-action",
|
|
"description": "mise tool setup action",
|
|
"version": "4.0.1",
|
|
"author": "jdx",
|
|
"type": "module",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jdx/mise-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"mise",
|
|
"setup"
|
|
],
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"all": "npm run format:write && npm run lint && npm run package",
|
|
"bundle": "npm run format:write && npm run package",
|
|
"format:check": "prettier --check **/*.ts",
|
|
"format:write": "prettier --write **/*.ts",
|
|
"lint": "eslint . && npm run format:check",
|
|
"package": "rimraf ./dist && rollup --config rollup.config.mjs",
|
|
"package:watch": "npm run package -- --watch",
|
|
"version": "./scripts/version.sh",
|
|
"prepare": "husky"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/cache": "^6.0.0",
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/glob": "^0.7.0",
|
|
"@actions/io": "^3.0.0",
|
|
"@types/handlebars": "^4.0.40",
|
|
"handlebars": "^4.7.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.2.0",
|
|
"@eslint/js": "^10.0.0",
|
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
"@rollup/plugin-typescript": "^12.0.0",
|
|
"@types/eslint__js": "^8.42.3",
|
|
"@types/node": "^24",
|
|
"eslint": "^10.0.0",
|
|
"globals": "^17.0.0",
|
|
"husky": "^9.1.7",
|
|
"jest": "^30",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "^3.4.1",
|
|
"rimraf": "^6.0.0",
|
|
"rollup": "^4.0.0",
|
|
"rollup-plugin-license": "^3.7.1",
|
|
"typescript": "^6.0.0",
|
|
"typescript-eslint": "^8.16.0"
|
|
}
|
|
}
|