Skip to content

Commit b1b27f4

Browse files
author
github-actions
committed
update actions dist
Signed-off-by: github-actions <[email protected]>
1 parent abe6451 commit b1b27f4

File tree

14 files changed

+126
-14
lines changed

14 files changed

+126
-14
lines changed

.github/actions/create-container_based-predicate/dist/index.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16295,6 +16295,14 @@ const { isUint8Array, isArrayBuffer } = __nccwpck_require__(9830)
1629516295
const { File: UndiciFile } = __nccwpck_require__(8511)
1629616296
const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)
1629716297

16298+
let random
16299+
try {
16300+
const crypto = __nccwpck_require__(6005)
16301+
random = (max) => crypto.randomInt(0, max)
16302+
} catch {
16303+
random = (max) => Math.floor(Math.random(max))
16304+
}
16305+
1629816306
let ReadableStream = globalThis.ReadableStream
1629916307

1630016308
/** @type {globalThis['File']} */
@@ -16380,7 +16388,7 @@ function extractBody (object, keepalive = false) {
1638016388
// Set source to a copy of the bytes held by object.
1638116389
source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength))
1638216390
} else if (util.isFormDataLike(object)) {
16383-
const boundary = `----formdata-undici-0${`${Math.floor(Math.random() * 1e11)}`.padStart(11, '0')}`
16391+
const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}`
1638416392
const prefix = `--${boundary}\r\nContent-Disposition: form-data`
1638516393

1638616394
/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
@@ -30565,6 +30573,14 @@ module.exports = require("net");
3056530573

3056630574
/***/ }),
3056730575

30576+
/***/ 6005:
30577+
/***/ ((module) => {
30578+
30579+
"use strict";
30580+
module.exports = require("node:crypto");
30581+
30582+
/***/ }),
30583+
3056830584
/***/ 5673:
3056930585
/***/ ((module) => {
3057030586

.github/actions/create-container_based-predicate/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/detect-workflow-js/dist/index.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16003,6 +16003,14 @@ const { isUint8Array, isArrayBuffer } = __nccwpck_require__(9830)
1600316003
const { File: UndiciFile } = __nccwpck_require__(8511)
1600416004
const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)
1600516005

16006+
let random
16007+
try {
16008+
const crypto = __nccwpck_require__(6005)
16009+
random = (max) => crypto.randomInt(0, max)
16010+
} catch {
16011+
random = (max) => Math.floor(Math.random(max))
16012+
}
16013+
1600616014
let ReadableStream = globalThis.ReadableStream
1600716015

1600816016
/** @type {globalThis['File']} */
@@ -16088,7 +16096,7 @@ function extractBody (object, keepalive = false) {
1608816096
// Set source to a copy of the bytes held by object.
1608916097
source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength))
1609016098
} else if (util.isFormDataLike(object)) {
16091-
const boundary = `----formdata-undici-0${`${Math.floor(Math.random() * 1e11)}`.padStart(11, '0')}`
16099+
const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}`
1609216100
const prefix = `--${boundary}\r\nContent-Disposition: form-data`
1609316101

1609416102
/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
@@ -30273,6 +30281,14 @@ module.exports = require("net");
3027330281

3027430282
/***/ }),
3027530283

30284+
/***/ 6005:
30285+
/***/ ((module) => {
30286+
30287+
"use strict";
30288+
module.exports = require("node:crypto");
30289+
30290+
/***/ }),
30291+
3027630292
/***/ 5673:
3027730293
/***/ ((module) => {
3027830294

.github/actions/detect-workflow-js/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/generate-attestations/dist/index.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11940,6 +11940,14 @@ const { isUint8Array, isArrayBuffer } = __nccwpck_require__(9830)
1194011940
const { File: UndiciFile } = __nccwpck_require__(8511)
1194111941
const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)
1194211942

11943+
let random
11944+
try {
11945+
const crypto = __nccwpck_require__(6005)
11946+
random = (max) => crypto.randomInt(0, max)
11947+
} catch {
11948+
random = (max) => Math.floor(Math.random(max))
11949+
}
11950+
1194311951
let ReadableStream = globalThis.ReadableStream
1194411952

1194511953
/** @type {globalThis['File']} */
@@ -12025,7 +12033,7 @@ function extractBody (object, keepalive = false) {
1202512033
// Set source to a copy of the bytes held by object.
1202612034
source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength))
1202712035
} else if (util.isFormDataLike(object)) {
12028-
const boundary = `----formdata-undici-0${`${Math.floor(Math.random() * 1e11)}`.padStart(11, '0')}`
12036+
const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}`
1202912037
const prefix = `--${boundary}\r\nContent-Disposition: form-data`
1203012038

1203112039
/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
@@ -26144,6 +26152,14 @@ module.exports = require("net");
2614426152

2614526153
/***/ }),
2614626154

26155+
/***/ 6005:
26156+
/***/ ((module) => {
26157+
26158+
"use strict";
26159+
module.exports = require("node:crypto");
26160+
26161+
/***/ }),
26162+
2614726163
/***/ 5673:
2614826164
/***/ ((module) => {
2614926165

.github/actions/generate-attestations/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/privacy-check/dist/index.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15807,6 +15807,14 @@ const { isUint8Array, isArrayBuffer } = __nccwpck_require__(9830)
1580715807
const { File: UndiciFile } = __nccwpck_require__(8511)
1580815808
const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)
1580915809

15810+
let random
15811+
try {
15812+
const crypto = __nccwpck_require__(6005)
15813+
random = (max) => crypto.randomInt(0, max)
15814+
} catch {
15815+
random = (max) => Math.floor(Math.random(max))
15816+
}
15817+
1581015818
let ReadableStream = globalThis.ReadableStream
1581115819

1581215820
/** @type {globalThis['File']} */
@@ -15892,7 +15900,7 @@ function extractBody (object, keepalive = false) {
1589215900
// Set source to a copy of the bytes held by object.
1589315901
source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength))
1589415902
} else if (util.isFormDataLike(object)) {
15895-
const boundary = `----formdata-undici-0${`${Math.floor(Math.random() * 1e11)}`.padStart(11, '0')}`
15903+
const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}`
1589615904
const prefix = `--${boundary}\r\nContent-Disposition: form-data`
1589715905

1589815906
/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
@@ -30077,6 +30085,14 @@ module.exports = require("net");
3007730085

3007830086
/***/ }),
3007930087

30088+
/***/ 6005:
30089+
/***/ ((module) => {
30090+
30091+
"use strict";
30092+
module.exports = require("node:crypto");
30093+
30094+
/***/ }),
30095+
3008030096
/***/ 5673:
3008130097
/***/ ((module) => {
3008230098

.github/actions/privacy-check/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/sign-attestations/dist/index.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45864,6 +45864,14 @@ const { isUint8Array, isArrayBuffer } = __nccwpck_require__(9830)
4586445864
const { File: UndiciFile } = __nccwpck_require__(8511)
4586545865
const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(685)
4586645866

45867+
let random
45868+
try {
45869+
const crypto = __nccwpck_require__(6005)
45870+
random = (max) => crypto.randomInt(0, max)
45871+
} catch {
45872+
random = (max) => Math.floor(Math.random(max))
45873+
}
45874+
4586745875
let ReadableStream = globalThis.ReadableStream
4586845876

4586945877
/** @type {globalThis['File']} */
@@ -45949,7 +45957,7 @@ function extractBody (object, keepalive = false) {
4594945957
// Set source to a copy of the bytes held by object.
4595045958
source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength))
4595145959
} else if (util.isFormDataLike(object)) {
45952-
const boundary = `----formdata-undici-0${`${Math.floor(Math.random() * 1e11)}`.padStart(11, '0')}`
45960+
const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}`
4595345961
const prefix = `--${boundary}\r\nContent-Disposition: form-data`
4595445962

4595545963
/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
@@ -60125,6 +60133,14 @@ module.exports = require("net");
6012560133

6012660134
/***/ }),
6012760135

60136+
/***/ 6005:
60137+
/***/ ((module) => {
60138+
60139+
"use strict";
60140+
module.exports = require("node:crypto");
60141+
60142+
/***/ }),
60143+
6012860144
/***/ 5673:
6012960145
/***/ ((module) => {
6013060146

.github/actions/sign-attestations/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)