From 4340a96ae1cee7e4f87c101614bbf457958632b0 Mon Sep 17 00:00:00 2001 From: Rob Vesse Date: Wed, 2 Oct 2024 10:20:08 +0100 Subject: [PATCH] Add Trivy Cache ignores This fixes Maven blowing up with OOM as some plugins are trying to read the very large Java DB files and exhausting memory on GitHub Actions runners. --- .gitignore | 2 ++ pom.xml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index e4b15ad..6cc4fc0 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,5 @@ dependency-reduced-pom.xml # OS X .DS_Store +# Trivy Cache +.trivy/ diff --git a/pom.xml b/pom.xml index 7521a00..3d96796 100644 --- a/pom.xml +++ b/pom.xml @@ -302,6 +302,7 @@ *-code-style.xml docs/images/ temp.token + .trivy/** @@ -332,6 +333,7 @@ **/*.graphqls **/*.trig **/graphql-jena-server + .trivy/**