Skip to content

Commit e7aa923

Browse files
committed
Merge branch 'main' into feat/cloudtrail-ssm-request-params
2 parents 4a62efd + fb2ad64 commit e7aa923

File tree

20 files changed

+94
-85
lines changed

20 files changed

+94
-85
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
# Initializes the CodeQL tools for scanning.
5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
54+
uses: github/codeql-action/init@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
5555
with:
5656
languages: go
5757
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -62,7 +62,7 @@ jobs:
6262
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6363
# If this step fails, then you should remove it and run the build manually (see below)
6464
- name: Autobuild
65-
uses: github/codeql-action/autobuild@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
65+
uses: github/codeql-action/autobuild@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
6666

6767
# ℹ️ Command-line programs to run using the OS shell.
6868
# 📚 https://git.io/JvXDl
@@ -76,4 +76,4 @@ jobs:
7676
# make release
7777

7878
- name: Perform CodeQL Analysis
79-
uses: github/codeql-action/analyze@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
79+
uses: github/codeql-action/analyze@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2

.github/workflows/dummy_c-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
sudo apt install -y --no-install-recommends build-essential
3232
3333
- name: Initialize CodeQL
34-
uses: github/codeql-action/init@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
34+
uses: github/codeql-action/init@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
3535
with:
3636
languages: cpp
3737

@@ -41,7 +41,7 @@ jobs:
4141
make libdummy_c.so
4242
4343
- name: Perform CodeQL Analysis
44-
uses: github/codeql-action/analyze@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
44+
uses: github/codeql-action/analyze@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
4545

4646
formatting-check:
4747
runs-on: ubuntu-22.04

.github/workflows/k8smeta-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
sudo apt install -y --no-install-recommends cmake build-essential autoconf libtool pkg-config
3838
3939
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
40+
uses: github/codeql-action/init@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
4141
with:
4242
languages: cpp
4343

@@ -49,7 +49,7 @@ jobs:
4949
make k8smeta -j6
5050
5151
- name: Perform CodeQL Analysis
52-
uses: github/codeql-action/analyze@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
52+
uses: github/codeql-action/analyze@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
5353

5454
- name: Build and run tests 🏎️
5555
run: |

.github/workflows/reusable_publish_packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
path: /tmp/plugins-aarch64
3434

3535
- name: Configure AWS credentials 🔧⚙️
36-
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
36+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
3737
with:
3838
role-to-assume: "arn:aws:iam::292999226676:role/github_actions-plugins-s3"
3939
aws-region: ${{ env.AWS_S3_REGION }}

plugins/cloudtrail/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/aws/aws-lambda-go v1.52.0
77
github.com/aws/aws-sdk-go-v2 v1.41.1
88
github.com/aws/aws-sdk-go-v2/config v1.32.7
9-
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.21.1
9+
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.22.0
1010
github.com/aws/aws-sdk-go-v2/service/s3 v1.96.0
1111
github.com/aws/aws-sdk-go-v2/service/sqs v1.42.21
1212
github.com/aws/smithy-go v1.24.0

plugins/cloudtrail/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ github.com/aws/aws-sdk-go-v2/credentials v1.19.7 h1:tHK47VqqtJxOymRrNtUXN5SP/zUT
1010
github.com/aws/aws-sdk-go-v2/credentials v1.19.7/go.mod h1:qOZk8sPDrxhf+4Wf4oT2urYJrYt3RejHSzgAquYeppw=
1111
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.17 h1:I0GyV8wiYrP8XpA70g1HBcQO1JlQxCMTW9npl5UbDHY=
1212
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.17/go.mod h1:tyw7BOl5bBe/oqvoIeECFJjMdzXoa/dfVz3QQ5lgHGA=
13-
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.21.1 h1:1hWFp+52Vq8Fevy/KUhbW/1MEApMz7uitCF/PQXRJpk=
14-
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.21.1/go.mod h1:sIec8j802/rCkCKgZV678HFR0s7lhQUYXT77tIvlaa4=
13+
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.22.0 h1:MpkX8EjkwuvyuX9B7+Zgk5M4URb2WQ84Y6jM81n5imw=
14+
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.22.0/go.mod h1:4V9Pv5sFfMPWQF0Q0zYN6BlV/504dFGaTeogallRqQw=
1515
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.17 h1:xOLELNKGp2vsiteLsvLPwxC+mYmO6OZ8PYgiuPJzF8U=
1616
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.17/go.mod h1:5M5CI3D12dNOtH3/mk6minaRwI2/37ifCURZISxA/IQ=
1717
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.17 h1:WWLqlh79iO48yLkj1v3ISRNiv+3KdQoZ6JWyfcsyQik=

plugins/container/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.6.3
4+
5+
* [`9a3ee4c`](https://github.com/falcosecurity/plugins/commit/9a3ee4c) fix(plugins/container): correct image parsing with registry port
6+
7+
38
## v0.6.2
49

510
* [`bff3406`](https://github.com/falcosecurity/plugins/commit/bff3406) perf(container): cache cgroup path to container ID resolution results

plugins/container/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")
99
# project metadata
1010
project(
1111
container
12-
VERSION 0.6.2
12+
VERSION 0.6.3
1313
DESCRIPTION "Falco container metadata enrichment Plugin"
1414
LANGUAGES CXX)
1515

plugins/dummy_rs/Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/gcpaudit/README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -87,33 +87,33 @@ For more details about what Cloud logging log queries, see the [GCP official doc
8787
# Supported Fields
8888

8989
<!-- README-PLUGIN-FIELDS -->
90-
| NAME | TYPE | ARG | DESCRIPTION |
91-
|-------------------------------|----------|------|-------------------------------------------------|
92-
| `gcp.user` | `string` | None | GCP principal email who committed the action |
93-
| `gcp.callerIP` | `string` | None | GCP principal caller IP |
94-
| `gcp.userAgent` | `string` | None | GCP principal caller useragent |
95-
| `gcp.authorizationInfo` | `string` | None | GCP authorization information affected resource |
96-
| `gcp.serviceName` | `string` | None | GCP API service name |
97-
| `gcp.policyDelta` | `string` | None | GCP service resource access policy |
98-
| `gcp.request` | `string` | None | GCP API raw request |
99-
| `gcp.methodName` | `string` | None | GCP API service method executed |
100-
| `gcp.cloudfunctions.function` | `string` | None | GCF name |
101-
| `gcp.cloudsql.databaseId` | `string` | None | GCP SQL database ID |
102-
| `gcp.compute.instanceId` | `string` | None | GCE instance ID |
103-
| `gcp.compute.networkId` | `string` | None | GCP network ID |
104-
| `gcp.compute.subnetwork` | `string` | None | GCP subnetwork name |
105-
| `gcp.compute.subnetworkId` | `string` | None | GCP subnetwork ID |
106-
| `gcp.dns.zone` | `string` | None | GCP DNS zoned |
107-
| `gcp.iam.serviceAccount` | `string` | None | GCP service account |
108-
| `gcp.iam.serviceAccountId` | `string` | None | GCP IAM unique ID |
109-
| `gcp.location` | `string` | None | GCP region |
110-
| `gcp.logging.sink` | `string` | None | GCP logging sink |
111-
| `gcp.projectId` | `string` | None | GCP project ID |
112-
| `gcp.resourceName` | `string` | None | GCP resource name |
113-
| `gcp.resourceType` | `string` | None | GCP resource type |
114-
| `gcp.resourceLabels` | `string` | None | GCP resource labels |
115-
| `gcp.storage.bucket` | `string` | None | GCP bucket name |
116-
| `gcp.time` | `string` | None | Timestamp of the event in RFC3339 format |
90+
| NAME | TYPE | ARG | DESCRIPTION |
91+
|-------------------------------|----------|------|------------------------------------------|
92+
| `gcp.user` | `string` | None | GCP principal, actor of the action |
93+
| `gcp.callerIP` | `string` | None | Actor's IP |
94+
| `gcp.userAgent` | `string` | None | Actor's User Agent |
95+
| `gcp.authorizationInfo` | `string` | None | GCP authorization (JSON) |
96+
| `gcp.serviceName` | `string` | None | GCP API service name |
97+
| `gcp.policyDelta` | `string` | None | GCP service resource access policy delta |
98+
| `gcp.request` | `string` | None | GCP API raw request (JSON) |
99+
| `gcp.methodName` | `string` | None | GCP API service method executed |
100+
| `gcp.cloudfunctions.function` | `string` | None | GCF name |
101+
| `gcp.cloudsql.databaseId` | `string` | None | GCP SQL database ID |
102+
| `gcp.compute.instanceId` | `string` | None | GCE instance ID |
103+
| `gcp.compute.networkId` | `string` | None | GCP network ID |
104+
| `gcp.compute.subnetwork` | `string` | None | GCP subnetwork name |
105+
| `gcp.compute.subnetworkId` | `string` | None | GCP subnetwork ID |
106+
| `gcp.dns.zone` | `string` | None | GCP DNS zone |
107+
| `gcp.iam.serviceAccount` | `string` | None | GCP service account |
108+
| `gcp.iam.serviceAccountId` | `string` | None | GCP IAM unique ID |
109+
| `gcp.location` | `string` | None | GCP region |
110+
| `gcp.logging.sink` | `string` | None | GCP logging sink |
111+
| `gcp.projectId` | `string` | None | GCP project ID |
112+
| `gcp.resourceName` | `string` | None | GCP resource name |
113+
| `gcp.resourceType` | `string` | None | GCP resource type |
114+
| `gcp.resourceLabels` | `string` | None | GCP resource labels (JSON) |
115+
| `gcp.storage.bucket` | `string` | None | GCP bucket name |
116+
| `gcp.time` | `string` | None | Timestamp of the event in RFC3339 format |
117117
<!-- /README-PLUGIN-FIELDS -->
118118

119119
# Development

0 commit comments

Comments
 (0)