mirror of
				https://github.com/actions/setup-go.git
				synced 2025-11-04 03:03:42 +00:00 
			
		
		
		
	Fix failures
This commit is contained in:
		
							parent
							
								
									c08f12b6d9
								
							
						
					
					
						commit
						15b8f2784b
					
				
							
								
								
									
										2
									
								
								.licenses/npm/undici.dep.yml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										2
									
								
								.licenses/npm/undici.dep.yml
									
									
									
										generated
									
									
									
								
							@ -1,6 +1,6 @@
 | 
				
			|||||||
---
 | 
					---
 | 
				
			||||||
name: undici
 | 
					name: undici
 | 
				
			||||||
version: 5.28.4
 | 
					version: 5.28.5
 | 
				
			||||||
type: npm
 | 
					type: npm
 | 
				
			||||||
summary: An HTTP/1.1 client, written from scratch for Node.js
 | 
					summary: An HTTP/1.1 client, written from scratch for Node.js
 | 
				
			||||||
homepage: https://undici.nodejs.org
 | 
					homepage: https://undici.nodejs.org
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										18
									
								
								dist/cache-save/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										18
									
								
								dist/cache-save/index.js
									
									
									
									
										vendored
									
									
								
							@ -65451,6 +65451,14 @@ const { isUint8Array, isArrayBuffer } = __nccwpck_require__(9830)
 | 
				
			|||||||
const { File: UndiciFile } = __nccwpck_require__(8511)
 | 
					const { File: UndiciFile } = __nccwpck_require__(8511)
 | 
				
			||||||
const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)
 | 
					const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					let random
 | 
				
			||||||
 | 
					try {
 | 
				
			||||||
 | 
					  const crypto = __nccwpck_require__(6005)
 | 
				
			||||||
 | 
					  random = (max) => crypto.randomInt(0, max)
 | 
				
			||||||
 | 
					} catch {
 | 
				
			||||||
 | 
					  random = (max) => Math.floor(Math.random(max))
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
let ReadableStream = globalThis.ReadableStream
 | 
					let ReadableStream = globalThis.ReadableStream
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/** @type {globalThis['File']} */
 | 
					/** @type {globalThis['File']} */
 | 
				
			||||||
@ -65536,7 +65544,7 @@ function extractBody (object, keepalive = false) {
 | 
				
			|||||||
    // Set source to a copy of the bytes held by object.
 | 
					    // Set source to a copy of the bytes held by object.
 | 
				
			||||||
    source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength))
 | 
					    source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength))
 | 
				
			||||||
  } else if (util.isFormDataLike(object)) {
 | 
					  } else if (util.isFormDataLike(object)) {
 | 
				
			||||||
    const boundary = `----formdata-undici-0${`${Math.floor(Math.random() * 1e11)}`.padStart(11, '0')}`
 | 
					    const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}`
 | 
				
			||||||
    const prefix = `--${boundary}\r\nContent-Disposition: form-data`
 | 
					    const prefix = `--${boundary}\r\nContent-Disposition: form-data`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
 | 
					    /*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
 | 
				
			||||||
@ -86891,6 +86899,14 @@ module.exports = require("net");
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
/***/ }),
 | 
					/***/ }),
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/***/ 6005:
 | 
				
			||||||
 | 
					/***/ ((module) => {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"use strict";
 | 
				
			||||||
 | 
					module.exports = require("node:crypto");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/***/ }),
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/***/ 5673:
 | 
					/***/ 5673:
 | 
				
			||||||
/***/ ((module) => {
 | 
					/***/ ((module) => {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										18
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										18
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							@ -71739,6 +71739,14 @@ const { isUint8Array, isArrayBuffer } = __nccwpck_require__(9830)
 | 
				
			|||||||
const { File: UndiciFile } = __nccwpck_require__(8511)
 | 
					const { File: UndiciFile } = __nccwpck_require__(8511)
 | 
				
			||||||
const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)
 | 
					const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					let random
 | 
				
			||||||
 | 
					try {
 | 
				
			||||||
 | 
					  const crypto = __nccwpck_require__(6005)
 | 
				
			||||||
 | 
					  random = (max) => crypto.randomInt(0, max)
 | 
				
			||||||
 | 
					} catch {
 | 
				
			||||||
 | 
					  random = (max) => Math.floor(Math.random(max))
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
let ReadableStream = globalThis.ReadableStream
 | 
					let ReadableStream = globalThis.ReadableStream
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/** @type {globalThis['File']} */
 | 
					/** @type {globalThis['File']} */
 | 
				
			||||||
@ -71824,7 +71832,7 @@ function extractBody (object, keepalive = false) {
 | 
				
			|||||||
    // Set source to a copy of the bytes held by object.
 | 
					    // Set source to a copy of the bytes held by object.
 | 
				
			||||||
    source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength))
 | 
					    source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength))
 | 
				
			||||||
  } else if (util.isFormDataLike(object)) {
 | 
					  } else if (util.isFormDataLike(object)) {
 | 
				
			||||||
    const boundary = `----formdata-undici-0${`${Math.floor(Math.random() * 1e11)}`.padStart(11, '0')}`
 | 
					    const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}`
 | 
				
			||||||
    const prefix = `--${boundary}\r\nContent-Disposition: form-data`
 | 
					    const prefix = `--${boundary}\r\nContent-Disposition: form-data`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
 | 
					    /*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
 | 
				
			||||||
@ -93892,6 +93900,14 @@ module.exports = require("net");
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
/***/ }),
 | 
					/***/ }),
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/***/ 6005:
 | 
				
			||||||
 | 
					/***/ ((module) => {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"use strict";
 | 
				
			||||||
 | 
					module.exports = require("node:crypto");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/***/ }),
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/***/ 5673:
 | 
					/***/ 5673:
 | 
				
			||||||
/***/ ((module) => {
 | 
					/***/ ((module) => {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user