mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-12 11:06:53 +08:00
Bumps the all-npm-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.15.29` | `24.0.10` | | [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `29.7.0` | `30.0.3` | | [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.14` | `30.0.0` | | [jest-circus](https://github.com/jestjs/jest/tree/HEAD/packages/jest-circus) | `29.7.0` | `30.0.3` | | [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.6.2` | | [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.3.4` | `29.4.0` | Updates `@types/node` from 22.15.29 to 24.0.10 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `jest` from 29.7.0 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 `@types/jest` from 29.5.14 to 30.0.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `jest-circus` from 29.7.0 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-circus) Updates `prettier` from 3.5.3 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.5.3...3.6.2) Updates `ts-jest` from 29.3.4 to 29.4.0 - [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.3.4...v29.4.0) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 24.0.10 dependency-type: direct:development update-type: version-update:semver-major dependency-group: all-npm-actions - dependency-name: jest dependency-version: 30.0.3 dependency-type: direct:development update-type: version-update:semver-major dependency-group: all-npm-actions - dependency-name: "@types/jest" dependency-version: 30.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: all-npm-actions - dependency-name: jest-circus dependency-version: 30.0.3 dependency-type: direct:development update-type: version-update:semver-major dependency-group: all-npm-actions - dependency-name: prettier dependency-version: 3.6.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all-npm-actions - dependency-name: ts-jest dependency-version: 29.4.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all-npm-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.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": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.2",
|
|
"async-retry": "^1.3.3",
|
|
"semver": "^7.7.0",
|
|
"toml": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async-retry": "^1.4.9",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.0.10",
|
|
"@types/retry": "^0.12.5",
|
|
"@types/semver": "^7.7.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"jest": "^30.0.3",
|
|
"jest-circus": "^30.0.3",
|
|
"nock": "^14.0.5",
|
|
"prettier": "^3.6.2",
|
|
"ts-jest": "^29.4.0",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|