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 artifact scanner in debug artifacts PR checks
  • Loading branch information
henrymercer committed Dec 17, 2025
commit f28848a66a120d77dfd94447bb946532d876a06e
8 changes: 8 additions & 0 deletions .github/workflows/debug-artifacts-failure-safe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ jobs:
CODEQL_ACTION_EXTRA_OPTIONS: '{ "database": { "finalize": ["--invalid-option"] } }'
with:
expect-error: true
- name: Verify artifact scan ran
shell: bash
run: |
if [[ "$CODEQL_ACTION_ARTIFACT_SCAN_FINISHED" != "true" ]]; then
echo "Error: Best effort artifact scan did not run"
exit 1
fi
echo "✓ Best effort artifact scan completed successfully"
download-and-check-artifacts:
name: Download and check debug artifacts after failure in analyze
if: github.triggering_actor != 'dependabot[bot]'
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/debug-artifacts-safe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ jobs:
run: ./build.sh
- uses: ./../action/analyze
id: analysis
- name: Verify artifact scan ran
shell: bash
run: |
if [[ "$CODEQL_ACTION_ARTIFACT_SCAN_FINISHED" != "true" ]]; then
echo "Error: Best effort artifact scan did not run"
exit 1
fi
echo "✓ Best effort artifact scan completed successfully"
download-and-check-artifacts:
name: Download and check debug artifacts
if: github.triggering_actor != 'dependabot[bot]'
Expand Down
1,645 changes: 924 additions & 721 deletions lib/analyze-action-post.js

Large diffs are not rendered by default.

1,712 changes: 956 additions & 756 deletions lib/init-action-post.js

Large diffs are not rendered by default.

27 changes: 15 additions & 12 deletions lib/start-proxy-action-post.js

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

Loading