diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4218861..caf0f9c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,7 +1,7 @@ name: "build" on: [push, pull_request] env: - TRIVY_VERSION: 0.37.1 + TRIVY_VERSION: 0.37.2 BATS_LIB_PATH: '/usr/lib/' jobs: build: diff --git a/Dockerfile b/Dockerfile index 194cb65..a140ea8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/aquasecurity/trivy:0.37.1 +FROM ghcr.io/aquasecurity/trivy:0.37.2 COPY entrypoint.sh / RUN apk --no-cache add bash curl npm RUN chmod +x /entrypoint.sh diff --git a/test/data/config-sarif.test b/test/data/config-sarif.test index 62aa67b..681cacb 100644 --- a/test/data/config-sarif.test +++ b/test/data/config-sarif.test @@ -64,7 +64,7 @@ } } ], - "version": "0.37.1" + "version": "0.37.2" } }, "results": [ diff --git a/test/data/image-sarif.test b/test/data/image-sarif.test index ae71dee..e25e817 100644 --- a/test/data/image-sarif.test +++ b/test/data/image-sarif.test @@ -37,7 +37,7 @@ } } ], - "version": "0.37.1" + "version": "0.37.2" } }, "results": [ diff --git a/workflow.yml b/workflow.yml index f8324ad..8e00963 100644 --- a/workflow.yml +++ b/workflow.yml @@ -7,7 +7,7 @@ on: jobs: build: name: Build - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - name: Checkout code uses: actions/checkout@v2