diff options
author | Christian Segundo | 2023-05-28 15:13:28 +0200 |
---|---|---|
committer | Christian Segundo | 2023-06-03 18:21:19 +0200 |
commit | 72c64b9c28ce14fe6b42ef76cbfae770936a6d06 (patch) | |
tree | de07898cafc71c2fc7abed7f3861887ae5fa3243 /.github/workflows/trivy.yml | |
parent | 883ee04811b43f348d86359bba13701730cfcfee (diff) | |
download | languagetool-72c64b9c28ce14fe6b42ef76cbfae770936a6d06.tar.gz |
Move to buildkite/dockerhub
Diffstat (limited to '.github/workflows/trivy.yml')
-rw-r--r-- | .github/workflows/trivy.yml | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml deleted file mode 100644 index ce25513..0000000 --- a/.github/workflows/trivy.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Trivy - -on: - workflow_dispatch: - push: - branches: [ master ] - pull_request: - branches: [ master ] - schedule: - - cron: '28 15 * * 3' - -permissions: - contents: read - -jobs: - build: - permissions: - contents: read - security-events: write - runs-on: "ubuntu-18.04" - steps: - - uses: actions/checkout@v2 - - - run: | - docker build -t docker.io/my-organization/my-app:${{ github.sha }} . - - - uses: aquasecurity/trivy-action@2a2157eb22c08c9a1fac99263430307b8d1bc7a2 - with: - image-ref: 'docker.io/my-organization/my-app:${{ github.sha }}' - format: 'template' - template: '@/contrib/sarif.tpl' - output: 'trivy-results.sarif' - severity: 'CRITICAL,HIGH' - ignore-unfixed: true - - - uses: github/codeql-action/upload-sarif@v1 - with: - sarif_file: 'trivy-results.sarif' |