From f0da3494aecd5c4a22b958f7a9e8c495852f08ee Mon Sep 17 00:00:00 2001 From: Daniel Beck <1831569+daniel-beck@users.noreply.github.com> Date: Sat, 15 Mar 2025 11:09:10 +0100 Subject: [PATCH] Delete workflow using backdoored action https://news.ycombinator.com/item?id=43368870 https://github.com/tj-actions/changed-files/commit/0e58ed8671d6b60d0890c21b07f8835ace038e67 --- .github/workflows/auto-codespell.yml | 40 ---------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/auto-codespell.yml diff --git a/.github/workflows/auto-codespell.yml b/.github/workflows/auto-codespell.yml deleted file mode 100644 index cb3c144d..00000000 --- a/.github/workflows/auto-codespell.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: CI Lint -on: - push: - branches: - - master - - main - pull_request: - types: [opened, synchronize, ready_for_review, reopened] -jobs: - codespell: - name: Codespell - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Codespell - uses: codespell-project/actions-codespell@v2 - with: - check_filenames: true - ignore_words_list: aks,ags,startin,NotIn - skip: "*.js,package-lock.json,*.lock,*/Font-Awesome/*,*.toml,*.svg,*assets/vendor/bootstrap*,cert-manager.crds.yaml,*/docs/*" - pre-commit: - name: PreCommit - runs-on: ubuntu-latest - steps: - - uses: actions/setup-python@v5.1.1 - - uses: DeterminateSystems/nix-installer-action@v13 - with: - diagnostic-endpoint: "" - - uses: DeterminateSystems/magic-nix-cache-action@v7 - with: - diagnostic-endpoint: "" - - name: Checkout - uses: actions/checkout@v4 - - id: files - uses: tj-actions/changed-files@v44 - - name: nix checks - run: nix flake check - - name: nix pre-commit - run: nix develop . --command pre-commit run --files ${{ steps.files.outputs.all_changed_files }} --show-diff-on-failure