diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e0682d64f..478de1a2f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -57,23 +57,3 @@ jobs: if: env.GIT_DIFF run: | make govulncheck - spellcheck: - name: Run codespell - runs-on: ubuntu-latest - steps: - - name: Check out the PR commit head - uses: actions/checkout@v4 - if: github.event_name == 'pull_request' - with: - ref: ${{ github.event.pull_request.head.sha }} - - name: Check out the repo - uses: actions/checkout@v4 - if: github.event_name != 'pull_request' - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.x" - - name: Install codespell - run: pip install codespell - - name: Run codespell - run: codespell