From 842ef4a74d497cc3c70125fd6b7f2cf2064924bf Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:46 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/trivy.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/trivy.yml diff --git a/.gitea/workflows/trivy.yml b/.gitea/workflows/trivy.yml new file mode 100644 index 0000000..07c15bd --- /dev/null +++ b/.gitea/workflows/trivy.yml @@ -0,0 +1,19 @@ +name: Trivy + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + trivy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run Trivy + uses: aquasecurity/trivy-action@master + with: + scan-type: 'fs' + scan-ref: '.' + severity: 'CRITICAL,HIGH'