Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove bundled copy of actions extractor #2787

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
Next Next commit
Remove bundled copy of actions extractor
  • Loading branch information
dbartol committed Feb 27, 2025
commit c29cab9aac67018e1c4b9832c64e2fa396d4c575
44 changes: 0 additions & 44 deletions actions-extractor/codeql-extractor.yml

This file was deleted.

40 changes: 0 additions & 40 deletions actions-extractor/tools/autobuild-impl.ps1

This file was deleted.

3 changes: 0 additions & 3 deletions actions-extractor/tools/autobuild.cmd

This file was deleted.

39 changes: 0 additions & 39 deletions actions-extractor/tools/autobuild.sh

This file was deleted.

6 changes: 0 additions & 6 deletions lib/codeql.js

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

2 changes: 1 addition & 1 deletion lib/codeql.js.map

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions src/codeql.ts
Original file line number Diff line number Diff line change
@@ -557,12 +557,6 @@ export async function getCodeQLForCmd(
extraArgs.push(`--trace-process-name=${processName}`);
}

if (config.languages.indexOf(Language.actions) >= 0) {
extraArgs.push("--search-path");
const extractorPath = path.resolve(__dirname, "../actions-extractor");
extraArgs.push(extractorPath);
}

const codeScanningConfigFile = await generateCodeScanningConfig(
config,
logger,