Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
uses: github/codeql-action/init@5595ccaf912efad79be6eef63a5619ff05969be3 # v4.37.6
with:
languages: ${{ matrix.language }}
queries: security-and-quality

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
uses: github/codeql-action/analyze@5595ccaf912efad79be6eef63a5619ff05969be3 # v4.37.6
with:
category: "/language:${{matrix.language}}"
13 changes: 10 additions & 3 deletions dist/update-known-versions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35282,7 +35282,7 @@ class RequestError extends Error {


// pkg/dist-src/version.js
var dist_bundle_VERSION = "10.0.11";
var dist_bundle_VERSION = "10.0.13";

// pkg/dist-src/defaults.js
var defaults_default = {
Expand Down Expand Up @@ -35420,7 +35420,10 @@ async function getResponseData(response) {
} catch (err) {
return text;
}
} else if (mimetype.type.startsWith("text/") || mimetype.parameters.charset?.toLowerCase() === "utf-8") {
} else if (mimetype.type.startsWith("text/") || // `application/octet-stream` is the canonical "arbitrary binary" type
// (RFC 2046) and must never be decoded as text, even when the response
// carries a (misleading) `charset=utf-8` parameter — see #751.
mimetype.parameters.charset?.toLowerCase() === "utf-8" && mimetype.type !== "application/octet-stream") {
return response.text().catch(noop);
} else {
return response.arrayBuffer().catch(
Expand Down Expand Up @@ -35509,6 +35512,9 @@ var GraphqlResponseError = class extends Error {
Error.captureStackTrace(this, this.constructor);
}
}
request;
headers;
response;
name = "GraphqlResponseError";
errors;
data;
Expand Down Expand Up @@ -35604,6 +35610,7 @@ function withCustomRequest(customRequest) {
});
}

/* v8 ignore if -- @preserve */

;// CONCATENATED MODULE: ./node_modules/@octokit/auth-token/dist-bundle/index.js
// pkg/dist-src/is-jwt.js
Expand Down Expand Up @@ -35661,7 +35668,7 @@ var createTokenAuth = function createTokenAuth2(token) {


;// CONCATENATED MODULE: ./node_modules/@octokit/core/dist-src/version.js
const version_VERSION = "7.0.6";
const version_VERSION = "7.0.7";


;// CONCATENATED MODULE: ./node_modules/@octokit/core/dist-src/index.js
Expand Down
2 changes: 1 addition & 1 deletion dist/update-known-versions/index.js.map

Large diffs are not rendered by default.

155 changes: 76 additions & 79 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.