Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ or the Firecracker lane. See
Suite mode (recommended — gates the whole collection):

```yaml
- uses: Kernel-Guard/bpfcompat@v0.1.6
- uses: Kernel-Guard/bpfcompat@v0.2.0
with:
suite: suites/project.yaml
suite-out: reports/suite.json
Expand All @@ -525,7 +525,7 @@ are alive and adds the result to the suite-level collection matrix.
Single artifact:

```yaml
- uses: Kernel-Guard/bpfcompat@v0.1.6
- uses: Kernel-Guard/bpfcompat@v0.2.0
with:
artifact: path/to/program.bpf.o
manifest: path/to/manifest.yaml
Expand Down
2 changes: 1 addition & 1 deletion docs/case-study-falco-modern-bpf.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ That is the difference between "❌ it broke" and "❌ ring buffer isn't availab

```bash
# In CI (GitHub Action), against your kernel matrix:
- uses: Kernel-Guard/bpfcompat@v0.1.6
- uses: Kernel-Guard/bpfcompat@v0.2.0
with:
artifact: build/bpf_probe.o
matrix: matrices/mvp.yaml
Expand Down
2 changes: 1 addition & 1 deletion docs/external-ci-proof.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ that compatibility failures block CI with `rc=2`.
- <https://github.com/ErenAri/bpfcompat-external-ci-proof/blob/main/.github/workflows/external-negative.yml>
- <https://github.com/ErenAri/bpfcompat-external-ci-proof/blob/main/.github/workflows/external-suite.yml>

Public repositories can reference `Kernel-Guard/bpfcompat@v0.1.3` directly.
Public repositories can reference `Kernel-Guard/bpfcompat@v0.2.0` directly.

## Source Refs Validated

Expand Down
2 changes: 1 addition & 1 deletion docs/project-compatibility-suite.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Single-artifact mode remains supported. Suite mode is enabled by setting
`suite`:

```yaml
- uses: Kernel-Guard/bpfcompat@v0.1.3
- uses: Kernel-Guard/bpfcompat@v0.2.0
with:
suite: suites/dev-functional.yaml
suite-out: reports/bpfcompat-suite.json
Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest # exposes /dev/kvm for KVM acceleration
steps:
- uses: actions/checkout@v4
- uses: Kernel-Guard/bpfcompat@v0.1.6
- uses: Kernel-Guard/bpfcompat@v0.2.0
with:
artifact: build/program.bpf.o # your compiled object
matrix: matrices/mvp.yaml # the kernels you support
Expand All @@ -57,7 +57,7 @@ What you get:
Shipping a whole product? Use **suite mode** to gate a collection in one run:

```yaml
- uses: Kernel-Guard/bpfcompat@v0.1.6
- uses: Kernel-Guard/bpfcompat@v0.2.0
with:
suite: suites/project.yaml
suite-out: reports/suite.json
Expand Down