Skip to content

Commit 8ff870a

Browse files
committed
Rename new input to processed-sarif-path
1 parent 6f0fcbe commit 8ff870a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/__quality-queries.yml

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

analyze/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ inputs:
7070
description: Whether to upload the resulting CodeQL database
7171
required: false
7272
default: "true"
73-
post-process-output:
73+
processed-sarif-path:
7474
description: >-
7575
Before uploading the SARIF files produced by the CodeQL CLI, the CodeQL Action may perform some post-processing
7676
on them. Ordinarily, these processed SARIF files are not saved to disk. However, if a path is provided as an

lib/analyze-action.js

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

pr-checks/checks/quality-queries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ steps:
3636
with:
3737
output: "${{ runner.temp }}/results"
3838
upload-database: false
39-
post-process-output: "${{ runner.temp }}/processed"
39+
processed-sarif-path: "${{ runner.temp }}/processed"
4040
- name: Upload security SARIF
4141
if: contains(matrix.analysis-kinds, 'code-scanning')
4242
uses: actions/upload-artifact@v4

src/analyze-action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ async function run() {
359359
checkoutPath,
360360
outputDir,
361361
category,
362-
actionsUtil.getOptionalInput("post-process-output"),
362+
actionsUtil.getOptionalInput("processed-sarif-path"),
363363
);
364364
} else {
365365
uploadResults = {};

src/upload-lib.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ export async function postProcessSarifFiles(
763763
* Writes the processed SARIF file to disk, if needed based on `pathInput` or the `SARIF_DUMP_DIR`.
764764
*
765765
* @param logger The logger to use.
766-
* @param pathInput The input provided for `post-process-output`.
766+
* @param pathInput The input provided for `processed-sarif-path`.
767767
* @param uploadTarget The upload target.
768768
* @param processingResults The results of post-processing SARIF files.
769769
*/

0 commit comments

Comments
 (0)