From 3c86bd707ac2619c6f2b5a0f4cd8afd471a717e6 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Fri, 17 Jan 2025 11:19:37 +0100 Subject: [PATCH] updates --- .woodpecker.yml | 2 +- Dockerfile | 2 +- src/locsrv/go.mod | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 8e67820..34ceb16 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -17,7 +17,7 @@ steps: scan_image: image: aquasec/trivy commands: - - trivy image $FORGE_NAME/$CI_REPO:$CI_COMMIT_SHA --quiet --exit-code 1 + - TRIVY_DISABLE_VEX_NOTICE=1 trivy image $FORGE_NAME/$CI_REPO:$CI_COMMIT_SHA --quiet --exit-code 1 when: - event: [push, tag] diff --git a/Dockerfile b/Dockerfile index cd40f89..c1ae2b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21-alpine as builder +FROM golang:1.23-alpine as builder RUN mkdir -p /go/src COPY ./src/ /go/src diff --git a/src/locsrv/go.mod b/src/locsrv/go.mod index acd16dc..46aaed6 100644 --- a/src/locsrv/go.mod +++ b/src/locsrv/go.mod @@ -13,12 +13,12 @@ require ( github.com/gorilla/websocket v1.5.0 // indirect github.com/jackc/pgpassfile v1.0.0 // indirect github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect - github.com/jackc/pgx/v5 v5.4.3 // indirect + github.com/jackc/pgx/v5 v5.4.4 // indirect github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect github.com/stretchr/testify v1.8.3 // indirect - golang.org/x/crypto v0.18.0 // indirect - golang.org/x/net v0.20.0 // indirect + golang.org/x/crypto v0.31.0 // indirect + golang.org/x/net v0.33.0 // indirect golang.org/x/sync v0.1.0 // indirect golang.org/x/text v0.14.0 // indirect )