From 03ce5bae8f96dcffc12f965562af5873ce88130a Mon Sep 17 00:00:00 2001 From: Abdur Rehman Date: Mon, 2 Jun 2025 16:01:39 +0500 Subject: [PATCH] remove static-workflow from release-3.5 Signed-off-by: Abdur Rehman --- .github/workflows/static-analysis.yaml | 32 -------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/static-analysis.yaml diff --git a/.github/workflows/static-analysis.yaml b/.github/workflows/static-analysis.yaml deleted file mode 100644 index 03e4deb0ffd..00000000000 --- a/.github/workflows/static-analysis.yaml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: Static Analysis -on: [push, pull_request] -permissions: read-all -jobs: - run: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 - - id: goversion - run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT" - - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 - with: - go-version: ${{ steps.goversion.outputs.goversion }} - - run: | - set -euo pipefail - - make verify - - run: | - set -euo pipefail - - make fix - - DIFF=$(git status --porcelain) - - if [ -n "$DIFF" ]; then - echo "These files were modified:" - echo - echo "$DIFF" - echo - exit 1 - fi