diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 04ffc73..8fe25c6 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: - uses: actions/checkout@v4 - name: Install and run Trivy (filesystem) run: | - TRIVY_VERSION=0.58.1 + TRIVY_VERSION=0.70.0 curl -sSL "https://github.com/aquasecurity/trivy/releases/download/v${TRIVY_VERSION}/trivy_${TRIVY_VERSION}_Linux-64bit.tar.gz" \ | tar xz -C /tmp trivy /tmp/trivy fs --severity HIGH,CRITICAL --exit-code 1 --ignore-unfixed --no-progress . @@ -97,7 +97,7 @@ jobs: cache-from: type=gha - name: Install and run Trivy (image) run: | - TRIVY_VERSION=0.58.1 + TRIVY_VERSION=0.70.0 curl -sSL "https://github.com/aquasecurity/trivy/releases/download/v${TRIVY_VERSION}/trivy_${TRIVY_VERSION}_Linux-64bit.tar.gz" \ | tar xz -C /tmp trivy /tmp/trivy image --severity HIGH,CRITICAL --exit-code 1 --ignore-unfixed --no-progress \