Skip to content

Commit 6f18f43

Browse files
chore(deps): bump github.com/aquasecurity/trivy from 0.58.2 to 0.59.1 (#126)
* chore(deps): bump github.com/aquasecurity/trivy from 0.58.2 to 0.59.1 Bumps [github.com/aquasecurity/trivy](https://github.com/aquasecurity/trivy) from 0.58.2 to 0.59.1. - [Release notes](https://github.com/aquasecurity/trivy/releases) - [Changelog](https://github.com/aquasecurity/trivy/blob/v0.59.1/CHANGELOG.md) - [Commits](aquasecurity/trivy@v0.58.2...v0.59.1) --- updated-dependencies: - dependency-name: github.com/aquasecurity/trivy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * bump: Golang alpine base docker image --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: André Meira <[email protected]>
1 parent b96a695 commit 6f18f43

File tree

4 files changed

+1161
-443
lines changed

4 files changed

+1161
-443
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ orbs:
77
references:
88
install_trivy_and_download_dbs: &install_trivy_and_download_dbs
99
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
1111
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
1313
mkdir cache
1414
./trivy --cache-dir ./cache image --download-db-only
1515
1616
build_and_publish_docker: &build_and_publish_docker
1717
persist_to_workspace: true
1818
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 .
2020
docker save --output docker-image.tar $CIRCLE_PROJECT_REPONAME:latest
2121
2222
workflows:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22-alpine as builder
1+
FROM golang:1.23-alpine as builder
22

33
ARG TRIVY_VERSION=dev
44
ENV TRIVY_VERSION=$TRIVY_VERSION

0 commit comments

Comments
 (0)