Temporarily disable uploading debug artifacts

This commit is contained in:
Angela P Wen 2025-01-22 10:34:48 -08:00
parent 7e4b683a3d
commit 519de26711
4 changed files with 7 additions and 1 deletions

View file

@ -6,6 +6,7 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
- Update default CodeQL bundle version to 2.20.2. [#2707](https://github.com/github/codeql-action/pull/2707) - Update default CodeQL bundle version to 2.20.2. [#2707](https://github.com/github/codeql-action/pull/2707)
- Fix an issue downloading the CodeQL Bundle from a GitHub Enterprise Server instance which occurred when the CodeQL Bundle had been synced to the instance using the [CodeQL Action sync tool](https://github.com/github/codeql-action-sync-tool) and the Actions runner did not have Zstandard installed. [#2710](https://github.com/github/codeql-action/pull/2710) - Fix an issue downloading the CodeQL Bundle from a GitHub Enterprise Server instance which occurred when the CodeQL Bundle had been synced to the instance using the [CodeQL Action sync tool](https://github.com/github/codeql-action-sync-tool) and the Actions runner did not have Zstandard installed. [#2710](https://github.com/github/codeql-action/pull/2710)
- Uploading debug artifacts for CodeQL analysis is temporarily disabled. [#2712](https://github.com/github/codeql-action/pull/2712)
## 3.28.2 - 21 Jan 2025 ## 3.28.2 - 21 Jan 2025

View file

@ -190,6 +190,8 @@ async function uploadDebugArtifacts(logger, toUpload, rootDir, artifactName, ghV
if (toUpload.length === 0) { if (toUpload.length === 0) {
return; return;
} }
logger.info("Uploading debug artifacts is temporarily disabled");
return;
let suffix = ""; let suffix = "";
const matrix = (0, actions_util_1.getRequiredInput)("matrix"); const matrix = (0, actions_util_1.getRequiredInput)("matrix");
if (matrix) { if (matrix) {

File diff suppressed because one or more lines are too long

View file

@ -242,6 +242,9 @@ export async function uploadDebugArtifacts(
if (toUpload.length === 0) { if (toUpload.length === 0) {
return; return;
} }
logger.info("Uploading debug artifacts is temporarily disabled");
return;
let suffix = ""; let suffix = "";
const matrix = getRequiredInput("matrix"); const matrix = getRequiredInput("matrix");
if (matrix) { if (matrix) {