mirror of
https://github.com/appleboy/drone-jenkins.git
synced 2026-06-14 14:02:41 +08:00
77ea4873e0
- Update GitHub Actions to use newer versions for setup-go, checkout, golangci-lint, and codecov - Change Go version specification to use "stable" and update test matrix to only "1.25" - Rename the test job to testing - Adjust hadolint to use a newer version and reference the Dockerfile at the root - Modify go test command to enable race detection and test all packages - Add a new Trivy security scan workflow for vulnerability, secret, and misconfiguration checks, including SARIF upload and log output Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
name: Trivy Security Scan
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
schedule:
|
|
# Run daily at 00:00 UTC
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch: # Allow manual trigger
|
|
|
|
permissions:
|
|
contents: read
|
|
security-events: write # Required for uploading SARIF results
|
|
|
|
jobs:
|
|
trivy-scan:
|
|
name: Trivy Security Scan
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run Trivy vulnerability scanner (source code)
|
|
uses: aquasecurity/trivy-action@0.33.1
|
|
with:
|
|
scan-type: "fs"
|
|
scan-ref: "."
|
|
scanners: "vuln,secret,misconfig"
|
|
format: "sarif"
|
|
output: "trivy-results.sarif"
|
|
severity: "CRITICAL,HIGH,MEDIUM"
|
|
ignore-unfixed: true
|
|
|
|
- name: Upload Trivy results to GitHub Security tab
|
|
uses: github/codeql-action/upload-sarif@v4
|
|
if: always()
|
|
with:
|
|
sarif_file: "trivy-results.sarif"
|
|
|
|
- name: Run Trivy scanner (table output for logs)
|
|
uses: aquasecurity/trivy-action@0.33.1
|
|
if: always()
|
|
with:
|
|
scan-type: "fs"
|
|
scan-ref: "."
|
|
scanners: "vuln,secret,misconfig"
|
|
format: "table"
|
|
severity: "CRITICAL,HIGH,MEDIUM"
|
|
ignore-unfixed: true
|
|
exit-code: "1"
|