-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: AnaisUrlichs <[email protected]>
- Loading branch information
1 parent
733ed00
commit e4289cd
Showing
515 changed files
with
22,052 additions
and
8,157 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,24 +1,15 @@ | ||
# Global | ||
* @knqyf263 | ||
|
||
# Docs | ||
/docs/** @knqyf263 @AnaisUrlichs @itaysk | ||
/mkdocs.yml @knqyf263 @AnaisUrlichs @itaysk | ||
/README.md @knqyf263 @AnaisUrlichs @itaysk | ||
# Misconfiguration scanning | ||
docs/docs/scanner/misconfiguration @knqyf263 @simar7 | ||
docs/docs/target/aws.md @knqyf263 @simar7 | ||
pkg/fanal/analyzer/config @knqyf263 @simar7 | ||
pkg/cloud @knqyf263 @simar7 | ||
|
||
# Helm chart | ||
helm/trivy/ @chen-keinan | ||
|
||
# Misconfiguration scanning | ||
examples/misconf/ @knqyf263 | ||
docs/docs/misconfiguration @knqyf263 | ||
docs/docs/cloud @knqyf263 | ||
pkg/fanal/analyzer/config @knqyf263 | ||
pkg/fanal/handler/misconf @knqyf263 | ||
pkg/cloud @knqyf263 | ||
pkg/flag/aws_flags.go @knqyf263 | ||
pkg/flag/misconf_flags.go @knqyf263 | ||
|
||
# Kubernetes scanning | ||
pkg/k8s/ @josedonizetti @chen-keinan @knqyf263 | ||
docs/docs/kubernetes/ @josedonizetti @chen-keinan @knqyf263 |
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,28 @@ | ||
labels: ["kind/documentation"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
#### Note | ||
Feel free to create a docs report if something doesn't work as expected or is unclear in the documentation. | ||
Please ensure that you're not creating a duplicate report by searching the [issues](https://github.com/aquasecurity/trivy/issues)/[discussions](https://github.com/aquasecurity/trivy/discussions) beforehand. | ||
Please also check [our contribution guidelines](https://aquasecurity.github.io/trivy/latest/community/contribute/discussion/). | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: Briefly describe the what has been unclear in the existing documentation | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Link | ||
description: Please provide a link to the current documentation or where you thought to find the information you were looking for | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Suggestions | ||
description: What would you like to have added or changed in the documentation? | ||
validations: | ||
required: true |
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,12 @@ | ||
# This workflow is used to bypass the required status checks in merge queue. | ||
# cf. https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/troubleshooting-required-status-checks | ||
name: CLA | ||
on: | ||
merge_group: | ||
|
||
jobs: | ||
cla: | ||
name: license/cla | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No test required"' |
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,31 @@ | ||
# This workflow is used to bypass the required status checks. | ||
# cf. https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/troubleshooting-required-status-checks | ||
name: Test | ||
on: | ||
push: | ||
paths: | ||
- '**.md' | ||
- 'docs/**' | ||
- 'mkdocs.yml' | ||
- 'LICENSE' | ||
pull_request: | ||
paths: | ||
- '**.md' | ||
- 'docs/**' | ||
- 'mkdocs.yml' | ||
- 'LICENSE' | ||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
matrix: | ||
operating-system: [ubuntu-latest, windows-latest, macos-latest] | ||
steps: | ||
- run: 'echo "No test required"' | ||
|
||
integration: | ||
name: Integration Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo "No test required"' |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v3.5.3 | ||
|
||
- name: Run Trivy vulnerability scanner and create GitHub issues | ||
uses: knqyf263/[email protected] | ||
|
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
Oops, something went wrong.