-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18705 from github/dbartol/actions-suite-selectors
Use default query selectors for Actions suites
- Loading branch information
Showing
9 changed files
with
38 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
category: breaking | ||
--- | ||
* The following queries have been removed from the `code-scanning` and `security-extended` suites. | ||
Any existing alerts for these queries will be closed automatically. | ||
* `actions/if-expression-always-true/critical` | ||
* `actions/if-expression-always-true/high` | ||
* `actions/unnecessary-use-of-advanced-config` | ||
|
||
* The following query has been moved from the `code-scanning` suite to the `security-extended` | ||
suite. Any existing alerts for this query will be closed automatically unless the analysis is | ||
configured to use the `security-extended` suite. | ||
* `actions/unpinned-tag` | ||
* The following queries have been added to the `security-extended` suite. | ||
* `actions/unversioned-immutable-action` | ||
* `actions/envpath-injection/medium` | ||
* `actions/envvar-injection/medium` | ||
* `actions/code-injection/medium` | ||
* `actions/artifact-poisoning/medium` | ||
* `actions/untrusted-checkout/medium` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,4 @@ | ||
- description: Standard Code Scanning queries for GitHub Actions | ||
- queries: '.' | ||
- include: | ||
problem.severity: | ||
- error | ||
- recommendation | ||
- exclude: | ||
tags contain: | ||
- experimental | ||
- debug | ||
- internal | ||
- queries: . | ||
- apply: code-scanning-selectors.yml | ||
from: codeql/suite-helpers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
- description: Security-extended queries for GitHub Actions | ||
- import: codeql-suites/actions-code-scanning.qls | ||
- queries: . | ||
- apply: security-extended-selectors.yml | ||
from: codeql/suite-helpers |