From b638cd663288c4cd9241735f306ca218883b1614 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2026 15:16:25 +0000 Subject: [PATCH] fix(deps): update all --- .circleci/config.yml | 2 +- Dockerfile | 4 ++-- go.mod | 4 ++-- lambda/go.mod | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0289cf7..9e59c6a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - moul: moul/build@1.12.1 # https://github.com/moul/build + moul: moul/build@1.16.0 # https://github.com/moul/build workflows: main: diff --git a/Dockerfile b/Dockerfile index 9a919fb..612a3f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG VCS_REF ARG VERSION # build -FROM golang:1.16-alpine as builder +FROM golang:1.26-alpine as builder RUN apk add --no-cache git gcc musl-dev make ENV GO111MODULE=on WORKDIR /go/src/moul.io/guilhunize @@ -14,7 +14,7 @@ COPY . ./ RUN make install # minimalist runtime -FROM alpine:3.13 +FROM alpine:3.24 LABEL org.label-schema.build-date=$BUILD_DATE \ org.label-schema.name="guilhunize" \ org.label-schema.description="" \ diff --git a/go.mod b/go.mod index 9e61c09..3046eac 100644 --- a/go.mod +++ b/go.mod @@ -3,6 +3,6 @@ module moul.io/guilhunize go 1.13 require ( - gopkg.in/urfave/cli.v2 v2.0.0-20190806201727-b62605953717 - moul.io/srand v1.4.0 + gopkg.in/urfave/cli.v2 v2.27.7 + moul.io/srand v1.6.1 ) diff --git a/lambda/go.mod b/lambda/go.mod index 5ff830b..f4148a6 100644 --- a/lambda/go.mod +++ b/lambda/go.mod @@ -3,8 +3,8 @@ module moul.io/guilhunize/lambda go 1.13 require ( - github.com/aws/aws-lambda-go v1.13.2 - moul.io/guilhunize v1.0.0 + github.com/aws/aws-lambda-go v1.54.0 + moul.io/guilhunize v1.2.0 ) replace moul.io/guilhunize => ../