Temporarily disable uploading debug artifacts
This commit is contained in:
parent
7e4b683a3d
commit
519de26711
4 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
2
lib/debug-artifacts.js
generated
2
lib/debug-artifacts.js
generated
|
|
@ -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
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue