Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot] 835c466054 Bump jest-circus from 29.7.0 to 30.0.2
Bumps [jest-circus](https://github.com/jestjs/jest/tree/HEAD/packages/jest-circus) from 29.7.0 to 30.0.2.
- [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.2/packages/jest-circus)

---
updated-dependencies:
- dependency-name: jest-circus
  dependency-version: 30.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-06-23 21:51:41 +00:00
4 changed files with 1781 additions and 284 deletions
-4
View File
@@ -98959,10 +98959,6 @@ class OfficialBuilds extends base_distribution_1.default {
try {
core.info(`Attempting to download ${this.nodeInfo.versionSpec}...`);
const versionInfo = yield this.getInfoFromManifest(this.nodeInfo.versionSpec, this.nodeInfo.stable, osArch, manifest);
const nodeUrl = core.getInput('node-url');
if (nodeUrl && versionInfo) {
versionInfo.downloadUrl = nodeUrl;
}
if (versionInfo) {
core.info(`Acquiring ${versionInfo.resolvedVersion} - ${versionInfo.arch} from ${versionInfo.downloadUrl}`);
downloadPath = yield tc.downloadTool(versionInfo.downloadUrl, undefined, this.nodeInfo.mirror ? this.nodeInfo.mirrorToken : this.nodeInfo.auth);
+1780 -275
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -48,7 +48,7 @@
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-circus": "^30.0.2",
"jest-each": "^29.7.0",
"prettier": "^2.8.4",
"ts-jest": "^29.1.2",
@@ -76,10 +76,6 @@ export default class OfficialBuilds extends BaseDistribution {
osArch,
manifest
);
const nodeUrl = core.getInput('node-url');
if (nodeUrl && versionInfo) {
versionInfo.downloadUrl = nodeUrl;
}
if (versionInfo) {
core.info(