Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Use checkoutPath and category constants consistently
  • Loading branch information
mbg committed Oct 22, 2025
commit c98d5a9a4f6e756fbe4fee86b9f0fdc85af54848
8 changes: 4 additions & 4 deletions lib/analyze-action.js

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

8 changes: 4 additions & 4 deletions src/analyze-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,8 @@ async function run() {
uploadResults[analyses.AnalysisKind.CodeScanning] =
await uploadLib.uploadFiles(
outputDir,
actionsUtil.getRequiredInput("checkout_path"),
actionsUtil.getOptionalInput("category"),
checkoutPath,
category,
features,
logger,
analyses.CodeScanning,
Expand All @@ -376,8 +376,8 @@ async function run() {
uploadResults[analyses.AnalysisKind.CodeQuality] =
await uploadLib.uploadFiles(
outputDir,
actionsUtil.getRequiredInput("checkout_path"),
actionsUtil.getOptionalInput("category"),
checkoutPath,
category,
features,
logger,
analyses.CodeQuality,
Expand Down
Loading