You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/setup-codeql-environment/action.yml
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@ name: 'Setup CodeQL Environment with Languages'
2
2
description: 'Install and configure CodeQL CLI via GitHub CLI extension and language-specific tools with optimized caching'
3
3
4
4
inputs:
5
+
add-to-path:
6
+
description: 'Whether to install the CodeQL stub to PATH and set CODEQL_HOME/CODEQL_PATH environment variables. Set to false when you need only the gh-codeql extension installed (e.g. for CODEQL_PATH tests that manage PATH themselves).'
7
+
required: false
8
+
default: 'true'
5
9
install-language-runtimes:
6
10
description: 'Whether to install language-specific runtimes and build tools'
7
11
required: false
@@ -136,7 +140,13 @@ runs:
136
140
exit 1
137
141
fi
138
142
139
-
# Create a directory for the CodeQL stub and install it there
0 commit comments