Skip to content

Commit c89dcf9

Browse files
committed
Address incorrect output for download bundle action
1 parent a8eb2e7 commit c89dcf9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test-create-bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: advanced-security/codeql-bundle-action/create-bundle@main
2323
id: create-bundle
2424
with:
25-
bundle-path: ${{ steps.download-bundle.outputs.output-path }}
25+
bundle-path: ${{ steps.download-bundle.outputs.bundle-path }}
2626
packs: "test/go-queries,test/go-customizations,test/java-queries,test/cpp-queries,test/javascript-queries"
2727
workspace: "${{ github.workspace }}/tests/codeql-workspace.yml"
2828
default-code-scanning-config: "${{ github.workspace }}/tests/code-scanning-config.yml"

download-bundle/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ inputs:
1616
outputs:
1717
bundle-path:
1818
description: Path to the downloaded bundle
19-
value: ${{ steps.download-bundle.outputs.output-path }}
19+
value: ${{ steps.download-bundle.outputs.bundle-path }}
2020
runs:
2121
using: "composite"
2222
steps:

download-bundle/download-bundle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ opts+=("--output ${output_path}")
2525
echo gh release download --repo github/codeql-action ${opts[@]}
2626
gh release download --repo github/codeql-action ${opts[@]}
2727

28-
echo "output-path=${output_path}" >> $GITHUB_OUTPUT
28+
echo "bundle-path=${output_path}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)