-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'aquasecurity:main' into traceectl
- Loading branch information
Showing
157 changed files
with
7,277 additions
and
3,581 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "gomod" | ||
directories: | ||
- "/" | ||
- "/api" | ||
- "/types" | ||
- "/signatures/helpers" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "docker" | ||
directories: | ||
- "/builder" | ||
schedule: | ||
interval: "daily" |
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,82 +1,126 @@ | ||
# Define labels for areas and kinds with match objects | ||
|
||
# | ||
# area | ||
# Area Labels | ||
# | ||
# area/grpc | ||
area/grpc: | ||
- pkg/server/grpc/** | ||
- pkg/server/grpc/**/* | ||
# area/api | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pkg/server/grpc/** | ||
- pkg/server/grpc/**/* | ||
|
||
area/api: | ||
- api/** | ||
- api/**/* | ||
# area/arm64: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- api/** | ||
- api/**/* | ||
|
||
area/build: | ||
- builder/** | ||
- "**/Makefile" | ||
- "**/Dockerfile" | ||
- go.sum | ||
- go.mod | ||
- staticcheck.conf | ||
- .github/** | ||
- .clang-format | ||
- .dockerignore | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- builder/** | ||
- '**/Makefile' | ||
- '**/Dockerfile' | ||
- go.sum | ||
- go.mod | ||
- staticcheck.conf | ||
- .github/** | ||
- .clang-format | ||
- .dockerignore | ||
|
||
area/capture: | ||
- "*capture*" | ||
# area/co-re: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- '*capture*' | ||
|
||
area/ebpf: | ||
- pkg/ebpf/* | ||
- pkg/ebpf/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pkg/ebpf/* | ||
- pkg/ebpf/**/* | ||
|
||
area/events: | ||
- pkg/events/* | ||
- pkg/events/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pkg/events/* | ||
- pkg/events/**/* | ||
|
||
area/filtering: | ||
- pkg/filters/* | ||
- pkg/filters/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pkg/filters/* | ||
- pkg/filters/**/* | ||
|
||
area/flags: | ||
- pkg/cmd/flags/* | ||
- pkg/cmd/flags/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pkg/cmd/flags/* | ||
- pkg/cmd/flags/**/* | ||
|
||
area/kubernetes: | ||
- deploy/* | ||
- deploy/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- deploy/* | ||
- deploy/**/* | ||
|
||
area/logging: | ||
- pkg/logger/* | ||
- pkg/logger/**/* | ||
- pkg/errfmt/* | ||
- pkg/errfmt/**/* | ||
# area/network: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pkg/logger/* | ||
- pkg/logger/**/* | ||
- pkg/errfmt/* | ||
- pkg/errfmt/**/* | ||
|
||
area/performance: | ||
- pkg/metrics/* | ||
- pkg/metrics/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pkg/metrics/* | ||
- pkg/metrics/**/* | ||
|
||
area/release: | ||
- packaging/* | ||
- packaging/**/* | ||
# area/rules: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- packaging/* | ||
- packaging/**/* | ||
|
||
area/signatures: | ||
- pkg/signatures/* | ||
- pkg/signatures/**/* | ||
- signatures/* | ||
- signatures/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pkg/signatures/* | ||
- pkg/signatures/**/* | ||
- signatures/* | ||
- signatures/**/* | ||
|
||
area/testing: | ||
- tests/* | ||
- tests/**/* | ||
- "**/*_test.go" | ||
# area/uprobe: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- tests/* | ||
- tests/**/* | ||
- '**/*_test.go' | ||
|
||
area/UX: | ||
- pkg/cmd/* | ||
- pkg/cmd/**/* | ||
- cmd/* | ||
- cmd/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- pkg/cmd/* | ||
- pkg/cmd/**/* | ||
- cmd/* | ||
- cmd/**/* | ||
|
||
# | ||
# kind | ||
# Kind Labels | ||
# | ||
|
||
kind/documentation: | ||
- docs/* | ||
- docs/**/* | ||
- "**/*.md" | ||
- mkdocs.yml | ||
- NOTICE | ||
- LICENSE | ||
- cmd/tracee-gptdocs/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- docs/* | ||
- docs/**/* | ||
- '**/*.md' | ||
- mkdocs.yml | ||
- NOTICE | ||
- LICENSE | ||
- cmd/tracee-gptdocs/* | ||
|
||
# kind/bug: | ||
# kind/chore: | ||
# kind/feature: |
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,53 @@ | ||
name: "CodeQL Advanced" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
- "v*.*.*" | ||
pull_request: | ||
branches: | ||
- "main" | ||
- "v*.*.*" | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze (${{ matrix.language }}) | ||
runs-on: 'ubuntu-latest' | ||
permissions: | ||
security-events: write | ||
packages: read | ||
actions: read | ||
contents: read | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- language: c-cpp | ||
build-mode: autobuild | ||
- language: go | ||
build-mode: autobuild | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libelf-dev clang make gcc pkg-config | ||
- name: Update submodules | ||
run: git submodule update --init --recursive | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
build-mode: ${{ matrix.build-mode }} | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
with: | ||
category: "/language:${{matrix.language}}" |
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
Oops, something went wrong.