mirror of
				https://github.com/actions/setup-go.git
				synced 2025-10-31 15:53:42 +00:00 
			
		
		
		
	Bump ts-jest from 29.1.2 to 29.3.2 (#582)
* Bump ts-jest from 29.1.2 to 29.3.2 Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 29.1.2 to 29.3.2. - [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.1.2...v29.3.2) --- updated-dependencies: - dependency-name: ts-jest dependency-version: 29.3.2 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix check failures --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com>
This commit is contained in:
		
							parent
							
								
									7f17e836c0
								
							
						
					
					
						commit
						bb65d8857b
					
				| @ -1,6 +1,6 @@ | |||||||
| --- | --- | ||||||
| name: semver | name: semver | ||||||
| version: 7.6.3 | version: 7.7.1 | ||||||
| type: npm | type: npm | ||||||
| summary: The semantic version parser used by npm. | summary: The semantic version parser used by npm. | ||||||
| homepage: | homepage: | ||||||
							
								
								
									
										47
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										47
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							| @ -61059,7 +61059,7 @@ const testSet = (set, version, options) => { | |||||||
| 
 | 
 | ||||||
| const debug = __nccwpck_require__(427) | const debug = __nccwpck_require__(427) | ||||||
| const { MAX_LENGTH, MAX_SAFE_INTEGER } = __nccwpck_require__(2293) | const { MAX_LENGTH, MAX_SAFE_INTEGER } = __nccwpck_require__(2293) | ||||||
| const { safeRe: re, t } = __nccwpck_require__(9523) | const { safeRe: re, safeSrc: src, t } = __nccwpck_require__(9523) | ||||||
| 
 | 
 | ||||||
| const parseOptions = __nccwpck_require__(785) | const parseOptions = __nccwpck_require__(785) | ||||||
| const { compareIdentifiers } = __nccwpck_require__(2463) | const { compareIdentifiers } = __nccwpck_require__(2463) | ||||||
| @ -61069,7 +61069,7 @@ class SemVer { | |||||||
| 
 | 
 | ||||||
|     if (version instanceof SemVer) { |     if (version instanceof SemVer) { | ||||||
|       if (version.loose === !!options.loose && |       if (version.loose === !!options.loose && | ||||||
|           version.includePrerelease === !!options.includePrerelease) { |         version.includePrerelease === !!options.includePrerelease) { | ||||||
|         return version |         return version | ||||||
|       } else { |       } else { | ||||||
|         version = version.version |         version = version.version | ||||||
| @ -61235,6 +61235,20 @@ class SemVer { | |||||||
|   // preminor will bump the version up to the next minor release, and immediately
 |   // preminor will bump the version up to the next minor release, and immediately
 | ||||||
|   // down to pre-release. premajor and prepatch work the same way.
 |   // down to pre-release. premajor and prepatch work the same way.
 | ||||||
|   inc (release, identifier, identifierBase) { |   inc (release, identifier, identifierBase) { | ||||||
|  |     if (release.startsWith('pre')) { | ||||||
|  |       if (!identifier && identifierBase === false) { | ||||||
|  |         throw new Error('invalid increment argument: identifier is empty') | ||||||
|  |       } | ||||||
|  |       // Avoid an invalid semver results
 | ||||||
|  |       if (identifier) { | ||||||
|  |         const r = new RegExp(`^${this.options.loose ? src[t.PRERELEASELOOSE] : src[t.PRERELEASE]}$`) | ||||||
|  |         const match = `-${identifier}`.match(r) | ||||||
|  |         if (!match || match[1] !== identifier) { | ||||||
|  |           throw new Error(`invalid identifier: ${identifier}`) | ||||||
|  |         } | ||||||
|  |       } | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|     switch (release) { |     switch (release) { | ||||||
|       case 'premajor': |       case 'premajor': | ||||||
|         this.prerelease.length = 0 |         this.prerelease.length = 0 | ||||||
| @ -61265,6 +61279,12 @@ class SemVer { | |||||||
|         } |         } | ||||||
|         this.inc('pre', identifier, identifierBase) |         this.inc('pre', identifier, identifierBase) | ||||||
|         break |         break | ||||||
|  |       case 'release': | ||||||
|  |         if (this.prerelease.length === 0) { | ||||||
|  |           throw new Error(`version ${this.raw} is not a prerelease`) | ||||||
|  |         } | ||||||
|  |         this.prerelease.length = 0 | ||||||
|  |         break | ||||||
| 
 | 
 | ||||||
|       case 'major': |       case 'major': | ||||||
|         // If this is a pre-major version, bump up to the same major version.
 |         // If this is a pre-major version, bump up to the same major version.
 | ||||||
| @ -61308,10 +61328,6 @@ class SemVer { | |||||||
|       case 'pre': { |       case 'pre': { | ||||||
|         const base = Number(identifierBase) ? 1 : 0 |         const base = Number(identifierBase) ? 1 : 0 | ||||||
| 
 | 
 | ||||||
|         if (!identifier && identifierBase === false) { |  | ||||||
|           throw new Error('invalid increment argument: identifier is empty') |  | ||||||
|         } |  | ||||||
| 
 |  | ||||||
|         if (this.prerelease.length === 0) { |         if (this.prerelease.length === 0) { | ||||||
|           this.prerelease = [base] |           this.prerelease = [base] | ||||||
|         } else { |         } else { | ||||||
| @ -61570,20 +61586,13 @@ const diff = (version1, version2) => { | |||||||
|       return 'major' |       return 'major' | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     // Otherwise it can be determined by checking the high version
 |     // If the main part has no difference
 | ||||||
| 
 |     if (lowVersion.compareMain(highVersion) === 0) { | ||||||
|     if (highVersion.patch) { |       if (lowVersion.minor && !lowVersion.patch) { | ||||||
|       // anything higher than a patch bump would result in the wrong version
 |         return 'minor' | ||||||
|  |       } | ||||||
|       return 'patch' |       return 'patch' | ||||||
|     } |     } | ||||||
| 
 |  | ||||||
|     if (highVersion.minor) { |  | ||||||
|       // anything higher than a minor bump would result in the wrong version
 |  | ||||||
|       return 'minor' |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     // bumping major/minor/patch all have same result
 |  | ||||||
|     return 'major' |  | ||||||
|   } |   } | ||||||
| 
 | 
 | ||||||
|   // add the `pre` prefix if we are going to a prerelease version
 |   // add the `pre` prefix if we are going to a prerelease version
 | ||||||
| @ -62090,6 +62099,7 @@ exports = module.exports = {} | |||||||
| const re = exports.re = [] | const re = exports.re = [] | ||||||
| const safeRe = exports.safeRe = [] | const safeRe = exports.safeRe = [] | ||||||
| const src = exports.src = [] | const src = exports.src = [] | ||||||
|  | const safeSrc = exports.safeSrc = [] | ||||||
| const t = exports.t = {} | const t = exports.t = {} | ||||||
| let R = 0 | let R = 0 | ||||||
| 
 | 
 | ||||||
| @ -62122,6 +62132,7 @@ const createToken = (name, value, isGlobal) => { | |||||||
|   debug(name, index, value) |   debug(name, index, value) | ||||||
|   t[name] = index |   t[name] = index | ||||||
|   src[index] = value |   src[index] = value | ||||||
|  |   safeSrc[index] = safe | ||||||
|   re[index] = new RegExp(value, isGlobal ? 'g' : undefined) |   re[index] = new RegExp(value, isGlobal ? 'g' : undefined) | ||||||
|   safeRe[index] = new RegExp(safe, isGlobal ? 'g' : undefined) |   safeRe[index] = new RegExp(safe, isGlobal ? 'g' : undefined) | ||||||
| } | } | ||||||
|  | |||||||
							
								
								
									
										124
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										124
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @ -33,7 +33,7 @@ | |||||||
|         "jest-circus": "^29.7.0", |         "jest-circus": "^29.7.0", | ||||||
|         "nock": "^10.0.6", |         "nock": "^10.0.6", | ||||||
|         "prettier": "^2.8.4", |         "prettier": "^2.8.4", | ||||||
|         "ts-jest": "^29.1.2", |         "ts-jest": "^29.3.2", | ||||||
|         "typescript": "^5.4.2" |         "typescript": "^5.4.2" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
| @ -2004,6 +2004,13 @@ | |||||||
|         "node": "*" |         "node": "*" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|  |     "node_modules/async": { | ||||||
|  |       "version": "3.2.6", | ||||||
|  |       "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", | ||||||
|  |       "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", | ||||||
|  |       "dev": true, | ||||||
|  |       "license": "MIT" | ||||||
|  |     }, | ||||||
|     "node_modules/asynckit": { |     "node_modules/asynckit": { | ||||||
|       "version": "0.4.0", |       "version": "0.4.0", | ||||||
|       "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", |       "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", | ||||||
| @ -2603,6 +2610,22 @@ | |||||||
|         "node": ">=6.0.0" |         "node": ">=6.0.0" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|  |     "node_modules/ejs": { | ||||||
|  |       "version": "3.1.10", | ||||||
|  |       "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", | ||||||
|  |       "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", | ||||||
|  |       "dev": true, | ||||||
|  |       "license": "Apache-2.0", | ||||||
|  |       "dependencies": { | ||||||
|  |         "jake": "^10.8.5" | ||||||
|  |       }, | ||||||
|  |       "bin": { | ||||||
|  |         "ejs": "bin/cli.js" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=0.10.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|     "node_modules/electron-to-chromium": { |     "node_modules/electron-to-chromium": { | ||||||
|       "version": "1.4.603", |       "version": "1.4.603", | ||||||
|       "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.603.tgz", |       "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.603.tgz", | ||||||
| @ -3101,6 +3124,39 @@ | |||||||
|         "node": "^10.12.0 || >=12.0.0" |         "node": "^10.12.0 || >=12.0.0" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|  |     "node_modules/filelist": { | ||||||
|  |       "version": "1.0.4", | ||||||
|  |       "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", | ||||||
|  |       "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", | ||||||
|  |       "dev": true, | ||||||
|  |       "license": "Apache-2.0", | ||||||
|  |       "dependencies": { | ||||||
|  |         "minimatch": "^5.0.1" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/filelist/node_modules/brace-expansion": { | ||||||
|  |       "version": "2.0.1", | ||||||
|  |       "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", | ||||||
|  |       "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", | ||||||
|  |       "dev": true, | ||||||
|  |       "license": "MIT", | ||||||
|  |       "dependencies": { | ||||||
|  |         "balanced-match": "^1.0.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/filelist/node_modules/minimatch": { | ||||||
|  |       "version": "5.1.6", | ||||||
|  |       "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", | ||||||
|  |       "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", | ||||||
|  |       "dev": true, | ||||||
|  |       "license": "ISC", | ||||||
|  |       "dependencies": { | ||||||
|  |         "brace-expansion": "^2.0.1" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=10" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|     "node_modules/fill-range": { |     "node_modules/fill-range": { | ||||||
|       "version": "7.1.1", |       "version": "7.1.1", | ||||||
|       "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", |       "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", | ||||||
| @ -3716,6 +3772,25 @@ | |||||||
|         "node": ">=8" |         "node": ">=8" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|  |     "node_modules/jake": { | ||||||
|  |       "version": "10.9.2", | ||||||
|  |       "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", | ||||||
|  |       "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", | ||||||
|  |       "dev": true, | ||||||
|  |       "license": "Apache-2.0", | ||||||
|  |       "dependencies": { | ||||||
|  |         "async": "^3.2.3", | ||||||
|  |         "chalk": "^4.0.2", | ||||||
|  |         "filelist": "^1.0.4", | ||||||
|  |         "minimatch": "^3.1.2" | ||||||
|  |       }, | ||||||
|  |       "bin": { | ||||||
|  |         "jake": "bin/cli.js" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=10" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|     "node_modules/jest": { |     "node_modules/jest": { | ||||||
|       "version": "29.7.0", |       "version": "29.7.0", | ||||||
|       "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", |       "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", | ||||||
| @ -5238,9 +5313,10 @@ | |||||||
|       "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" |       "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" | ||||||
|     }, |     }, | ||||||
|     "node_modules/semver": { |     "node_modules/semver": { | ||||||
|       "version": "7.6.3", |       "version": "7.7.1", | ||||||
|       "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", |       "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", | ||||||
|       "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", |       "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", | ||||||
|  |       "license": "ISC", | ||||||
|       "bin": { |       "bin": { | ||||||
|         "semver": "bin/semver.js" |         "semver": "bin/semver.js" | ||||||
|       }, |       }, | ||||||
| @ -5516,28 +5592,32 @@ | |||||||
|       "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" |       "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" | ||||||
|     }, |     }, | ||||||
|     "node_modules/ts-jest": { |     "node_modules/ts-jest": { | ||||||
|       "version": "29.1.2", |       "version": "29.3.2", | ||||||
|       "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", |       "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.3.2.tgz", | ||||||
|       "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", |       "integrity": "sha512-bJJkrWc6PjFVz5g2DGCNUo8z7oFEYaz1xP1NpeDU7KNLMWPpEyV8Chbpkn8xjzgRDpQhnGMyvyldoL7h8JXyug==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|  |       "license": "MIT", | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "bs-logger": "0.x", |         "bs-logger": "^0.2.6", | ||||||
|         "fast-json-stable-stringify": "2.x", |         "ejs": "^3.1.10", | ||||||
|  |         "fast-json-stable-stringify": "^2.1.0", | ||||||
|         "jest-util": "^29.0.0", |         "jest-util": "^29.0.0", | ||||||
|         "json5": "^2.2.3", |         "json5": "^2.2.3", | ||||||
|         "lodash.memoize": "4.x", |         "lodash.memoize": "^4.1.2", | ||||||
|         "make-error": "1.x", |         "make-error": "^1.3.6", | ||||||
|         "semver": "^7.5.3", |         "semver": "^7.7.1", | ||||||
|         "yargs-parser": "^21.0.1" |         "type-fest": "^4.39.1", | ||||||
|  |         "yargs-parser": "^21.1.1" | ||||||
|       }, |       }, | ||||||
|       "bin": { |       "bin": { | ||||||
|         "ts-jest": "cli.js" |         "ts-jest": "cli.js" | ||||||
|       }, |       }, | ||||||
|       "engines": { |       "engines": { | ||||||
|         "node": "^16.10.0 || ^18.0.0 || >=20.0.0" |         "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0" | ||||||
|       }, |       }, | ||||||
|       "peerDependencies": { |       "peerDependencies": { | ||||||
|         "@babel/core": ">=7.0.0-beta.0 <8", |         "@babel/core": ">=7.0.0-beta.0 <8", | ||||||
|  |         "@jest/transform": "^29.0.0", | ||||||
|         "@jest/types": "^29.0.0", |         "@jest/types": "^29.0.0", | ||||||
|         "babel-jest": "^29.0.0", |         "babel-jest": "^29.0.0", | ||||||
|         "jest": "^29.0.0", |         "jest": "^29.0.0", | ||||||
| @ -5547,6 +5627,9 @@ | |||||||
|         "@babel/core": { |         "@babel/core": { | ||||||
|           "optional": true |           "optional": true | ||||||
|         }, |         }, | ||||||
|  |         "@jest/transform": { | ||||||
|  |           "optional": true | ||||||
|  |         }, | ||||||
|         "@jest/types": { |         "@jest/types": { | ||||||
|           "optional": true |           "optional": true | ||||||
|         }, |         }, | ||||||
| @ -5558,6 +5641,19 @@ | |||||||
|         } |         } | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|  |     "node_modules/ts-jest/node_modules/type-fest": { | ||||||
|  |       "version": "4.39.1", | ||||||
|  |       "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.39.1.tgz", | ||||||
|  |       "integrity": "sha512-uW9qzd66uyHYxwyVBYiwS4Oi0qZyUqwjU+Oevr6ZogYiXt99EOYtwvzMSLw1c3lYo2HzJsep/NB23iEVEgjG/w==", | ||||||
|  |       "dev": true, | ||||||
|  |       "license": "(MIT OR CC0-1.0)", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=16" | ||||||
|  |       }, | ||||||
|  |       "funding": { | ||||||
|  |         "url": "https://github.com/sponsors/sindresorhus" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|     "node_modules/tslib": { |     "node_modules/tslib": { | ||||||
|       "version": "2.6.2", |       "version": "2.6.2", | ||||||
|       "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", |       "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", | ||||||
|  | |||||||
| @ -49,7 +49,7 @@ | |||||||
|     "jest-circus": "^29.7.0", |     "jest-circus": "^29.7.0", | ||||||
|     "nock": "^10.0.6", |     "nock": "^10.0.6", | ||||||
|     "prettier": "^2.8.4", |     "prettier": "^2.8.4", | ||||||
|     "ts-jest": "^29.1.2", |     "ts-jest": "^29.3.2", | ||||||
|     "typescript": "^5.4.2" |     "typescript": "^5.4.2" | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user