From 09742281df80a09856e6f840fb7965e1b9e291cd Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Wed, 31 Aug 2022 20:44:15 +0200 Subject: [PATCH] Delete security.yml See https://github.com/searxng/searxng/pull/1730 --- .github/workflows/security.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/security.yml diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml deleted file mode 100644 index 26a2cc0..0000000 --- a/.github/workflows/security.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: "Security checks" -on: - schedule: - - cron: "05 06 * * *" - workflow_dispatch: - -jobs: - dockers: - name: Trivy ${{ matrix.image }} - runs-on: ubuntu-20.04 - strategy: - fail-fast: false - matrix: - image: ["searxng/searxng", "dalf/filtron", "dalf/morty"] - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Run Trivy vulnerability scanner - uses: aquasecurity/trivy-action@master - with: - image-ref: '${{ matrix.image }}:latest' - format: 'table' - exit-code: '1' - ignore-unfixed: false - vuln-type: 'os,library' - severity: 'UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL'