mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-14 12:06:54 +08:00
Bumps the all-npm-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `1.11.1` | `3.0.0` | | [@actions/exec](https://github.com/actions/toolkit/tree/HEAD/packages/exec) | `1.1.1` | `3.0.0` | | [@actions/io](https://github.com/actions/toolkit/tree/HEAD/packages/io) | `1.1.3` | `3.0.2` | | [@actions/tool-cache](https://github.com/actions/toolkit/tree/HEAD/packages/tool-cache) | `2.0.2` | `4.0.0` | | [semver](https://github.com/npm/node-semver) | `7.7.3` | `7.7.4` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.2.0` | `25.2.1` | Updates `@actions/core` from 1.11.1 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 1.1.1 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 1.1.3 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 2.0.2 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 `semver` from 7.7.3 to 7.7.4 - [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.7.3...v7.7.4) Updates `@types/node` from 25.2.0 to 25.2.1 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@actions/core" dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-npm-actions - dependency-name: "@actions/exec" dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-npm-actions - dependency-name: "@actions/io" dependency-version: 3.0.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-npm-actions - dependency-name: "@actions/tool-cache" dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-npm-actions - dependency-name: semver dependency-version: 7.7.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-npm-actions - dependency-name: "@types/node" dependency-version: 25.2.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-npm-actions ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "setup-julia",
|
|
"private": true,
|
|
"description": "setup Julia action",
|
|
"main": "lib/setup-julia.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"pack": "ncc build",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/julia-actions/setup-julia.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"julia",
|
|
"setup"
|
|
],
|
|
"author": "Sascha Mann <git@mail.saschamann.eu>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/io": "^3.0.2",
|
|
"@actions/tool-cache": "^4.0.0",
|
|
"async-retry": "^1.3.3",
|
|
"semver": "^7.7.4",
|
|
"toml": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async-retry": "^1.4.9",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^25.2.1",
|
|
"@types/retry": "^0.12.5",
|
|
"@types/semver": "^7.7.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"jest": "^30.0.5",
|
|
"jest-circus": "^30.0.3",
|
|
"nock": "^14.0.8",
|
|
"prettier": "^3.6.2",
|
|
"ts-jest": "^29.4.0",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|