From 955a23d532ab178ec97c60869f85bdfe5401dc77 Mon Sep 17 00:00:00 2001 From: Naji Obeid Date: Fri, 3 Jan 2025 16:12:41 +0000 Subject: [PATCH] integrate zizmor in github actions --- .github/workflows/lint.yml | 2 ++ .github/workflows/test.yml | 1 + .github/workflows/zizmor.yml | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 .github/workflows/zizmor.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 73928851..d0da77b2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,6 +18,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 + with: + persist-credentials: false - name: Install dependencies run: composer install --no-progress --prefer-dist --optimize-autoloader diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b507122e..546a361e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,6 +28,7 @@ jobs: uses: actions/checkout@v4 with: submodules: true + persist-credentials: false - name: Install dependencies run: composer install --no-progress --prefer-dist --optimize-autoloader diff --git a/.github/workflows/zizmor.yml b/.github/workflows/zizmor.yml new file mode 100644 index 00000000..d915605e --- /dev/null +++ b/.github/workflows/zizmor.yml @@ -0,0 +1,36 @@ +name: GitHub Actions Security Analysis with zizmor + +on: + push: + branches: ["main"] + pull_request: + branches: ["**"] + +jobs: + zizmor: + name: zizmor latest via PyPI + runs-on: ubuntu-latest + permissions: + security-events: write + # required for workflows in private repositories + contents: read + actions: read + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + persist-credentials: false + + - name: Install the latest version of uv + uses: astral-sh/setup-uv@v5 + + - name: Run zizmor + run: uvx zizmor --format sarif . > results.sarif + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif + category: zizmor