From 8efccda72e3c27cddda10af72575ab1d94d77926 Mon Sep 17 00:00:00 2001 From: Shahm Najeeb Date: Wed, 18 Dec 2024 10:24:22 +0400 Subject: [PATCH 1/2] Updated SECURITY.md Signed-off-by: Shahm Najeeb --- SECURITY.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index f39289c0..bd248317 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -6,13 +6,14 @@ This section outlines the versions of our project that are currently supported w | Version | Supported | |---------|-----------| +| 3.1.x | ✅ | | 3.0.x | ✅ | -| 2.5.x | ⚠️ | -| 2.4.x | ⚠️ | +| 2.5.x | ✖️ | +| 2.4.x | ✖️ | | 2.3.x | ✖️ | | 2.2.x | ✖️ | -| 2.1.x | ✖️ | -| 2.0.x | ✖️ | +| 2.1.x | ❌ | +| 2.0.x | ❌ | | 1.6.x | ❌ | | 1.5.x | ❌ | | 1.4.x | ❌ | From abc3c2a4c9975b29b8973356e4c1c4aff4eee570 Mon Sep 17 00:00:00 2001 From: Shahm Najeeb Date: Wed, 18 Dec 2024 10:35:10 +0400 Subject: [PATCH 2/2] Delete .github/workflows/cflite_build.yml Signed-off-by: Shahm Najeeb --- .github/workflows/cflite_build.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/cflite_build.yml diff --git a/.github/workflows/cflite_build.yml b/.github/workflows/cflite_build.yml deleted file mode 100644 index 32040e95..00000000 --- a/.github/workflows/cflite_build.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: ClusterFuzzLite continuous builds -on: - push: - branches: - - main # Use your actual default branch here. -permissions: read-all -jobs: - Build: - runs-on: ubuntu-latest - concurrency: - group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ github.ref }} - cancel-in-progress: true - strategy: - fail-fast: false - matrix: - sanitizer: - - address - # Override this with the sanitizers you want. - # - undefined - # - memory - steps: - - name: Build Fuzzers (${{ matrix.sanitizer }}) - id: build - uses: google/clusterfuzzlite/actions/build_fuzzers@v1 - with: - language: python # Change this to the language you are fuzzing. - sanitizer: ${{ matrix.sanitizer }} - upload-build: true