Skip to content

Commit

Permalink
build: update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
angular-robot committed Jan 16, 2025
1 parent e8d26ef commit a7708c6
Show file tree
Hide file tree
Showing 15 changed files with 3,068 additions and 2,241 deletions.
453 changes: 257 additions & 196 deletions .github/local-actions/branch-manager/main.js

Large diffs are not rendered by default.

453 changes: 257 additions & 196 deletions .github/local-actions/labels-sync/main.js

Large diffs are not rendered by default.

453 changes: 257 additions & 196 deletions .github/local-actions/lock-closed/main.js

Large diffs are not rendered by default.

453 changes: 257 additions & 196 deletions github-actions/branch-manager/main.js

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions github-actions/browserstack/set-browserstack-env.cjs

Large diffs are not rendered by default.

453 changes: 257 additions & 196 deletions github-actions/commit-message-based-labels/main.js

Large diffs are not rendered by default.

453 changes: 257 additions & 196 deletions github-actions/create-pr-for-changes/main.js

Large diffs are not rendered by default.

453 changes: 257 additions & 196 deletions github-actions/feature-request/main.js

Large diffs are not rendered by default.

453 changes: 257 additions & 196 deletions github-actions/google-internal-tests/main.js

Large diffs are not rendered by default.

453 changes: 257 additions & 196 deletions github-actions/org-file-sync/main.js

Large diffs are not rendered by default.

453 changes: 257 additions & 196 deletions github-actions/post-approval-changes/main.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5265,6 +5265,13 @@ var require_body = __commonJS({
var { isUint8Array, isArrayBuffer } = __require("util/types");
var { File: UndiciFile } = require_file();
var { parseMIMEType, serializeAMimeType } = require_dataURL();
var random;
try {
const crypto = __require("node:crypto");
random = (max) => crypto.randomInt(0, max);
} catch {
random = (max) => Math.floor(Math.random(max));
}
var ReadableStream = globalThis.ReadableStream;
var File = NativeFile ?? UndiciFile;
var textEncoder = new TextEncoder();
Expand Down Expand Up @@ -5307,7 +5314,7 @@ var require_body = __commonJS({
} else if (ArrayBuffer.isView(object)) {
source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength));
} 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
Content-Disposition: form-data`;
const escape = (str) => str.replace(/\n/g, "%0A").replace(/\r/g, "%0D").replace(/"/g, "%22");
Expand Down
46 changes: 23 additions & 23 deletions github-actions/saucelabs/set-saucelabs-env.cjs

Large diffs are not rendered by default.

Loading

0 comments on commit a7708c6

Please sign in to comment.