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: action-templates/actions/action-codeql/action.yml
+24-3Lines changed: 24 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,8 @@ inputs:
17
17
required: false
18
18
default: "security-and-quality"
19
19
java-version:
20
-
description: "Temurin JDK version to use for autobuild (only when codeql-language is java-kotlin and codeql-build is set to autobuild)"
20
+
description: "Temurin JDK version to use for autobuild (only when codeql-language is java-kotlin and codeql-build is set to autobuild). If not set extract the version from the `pom.xml` on the attribute `java.version`."
Copy file name to clipboardExpand all lines: docs/actions.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -271,6 +271,9 @@ Workflows using that action need the following permissions:
271
271
filters: |
272
272
src:
273
273
- 'src/**'
274
+
# Branch, tag, or commit SHA against which the changes will be detected.
275
+
# default ''
276
+
base: ''
274
277
275
278
# run only if some file in 'src' folder was changed
276
279
- if: steps.changes.outputs.src == 'true'
@@ -311,8 +314,7 @@ Workflows using that action need the following permissions:
311
314
# Default: security-and-quality
312
315
codeql-query: "security-and-quality"
313
316
314
-
# Temurin JDK version to use for autobuild (only when codeql-language is java-kotlin and codeql-build is set to autobuild)
315
-
# Default: 21
317
+
# Temurin JDK version to use for autobuild (only when codeql-language is java-kotlin and codeql-build is set to autobuild). If not set extract the version from the `pom.xml` on the attribute `java.version`.
316
318
java-version: "21"
317
319
318
320
# Path to scan files in
@@ -440,8 +442,7 @@ Workflows using that action need the following permissions:
0 commit comments