File tree 4 files changed +1161
-443
lines changed
4 files changed +1161
-443
lines changed Original file line number Diff line number Diff line change 7
7
references :
8
8
install_trivy_and_download_dbs : &install_trivy_and_download_dbs
9
9
persist_to_workspace : true
10
- # https://aquasecurity.github.io/trivy/v0.55 /getting-started/installation/#install-script
10
+ # https://aquasecurity.github.io/trivy/v0.59 /getting-started/installation/#install-script
11
11
cmd : |
12
- curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b . v0.58 .1
12
+ curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b . v0.59 .1
13
13
mkdir cache
14
14
./trivy --cache-dir ./cache image --download-db-only
15
15
16
16
build_and_publish_docker : &build_and_publish_docker
17
17
persist_to_workspace : true
18
18
cmd : |
19
- docker build -t $CIRCLE_PROJECT_REPONAME:latest --build-arg TRIVY_VERSION=0.58 .1 .
19
+ docker build -t $CIRCLE_PROJECT_REPONAME:latest --build-arg TRIVY_VERSION=0.59 .1 .
20
20
docker save --output docker-image.tar $CIRCLE_PROJECT_REPONAME:latest
21
21
22
22
workflows :
Original file line number Diff line number Diff line change 1
- FROM golang:1.22 -alpine as builder
1
+ FROM golang:1.23 -alpine as builder
2
2
3
3
ARG TRIVY_VERSION=dev
4
4
ENV TRIVY_VERSION=$TRIVY_VERSION
You can’t perform that action at this time.
0 commit comments