From cd2089dd63c2a084b3c71caa92085ce1f712cf89 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Sep 2024 12:09:15 +0000 Subject: [PATCH 1/2] Bump golang from 1.22.5 to 1.23.0 in the docker-dependencies group Bumps the docker-dependencies group with 1 update: golang. Updates `golang` from 1.22.5 to 1.23.0 --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-dependencies ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 92f086d..437cbff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.5 +FROM golang:1.23.0 COPY ./ /exporter/ WORKDIR /exporter RUN make build-linux From e26744e3e0a44951c2fdf163055c17d5bdeabcda Mon Sep 17 00:00:00 2001 From: snowiow Date: Tue, 10 Sep 2024 15:33:59 +0200 Subject: [PATCH 2/2] update go version --- .moia-mk.lock | 2 +- go.mod | 2 +- mk-templates/go.mk | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.moia-mk.lock b/.moia-mk.lock index 86dd09a..a86d3df 100644 --- a/.moia-mk.lock +++ b/.moia-mk.lock @@ -1 +1 @@ -v0.15.0 +v0.18.0 diff --git a/go.mod b/go.mod index 33093f7..8472cf4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/moia-dev/aws-apigateway-exporter -go 1.22 +go 1.23 require ( github.com/aws/aws-sdk-go v1.55.5 diff --git a/mk-templates/go.mk b/mk-templates/go.mk index 8c8b3e9..b603f13 100644 --- a/mk-templates/go.mk +++ b/mk-templates/go.mk @@ -13,7 +13,7 @@ LINT_TARGETS := $(shell find . -name '*.go' | sed -e "s|\(.*\)/.*\.go\$ endif # The current version of golangci-lint. # See: https://github.com/golangci/golangci-lint/releases -GOLANGCI_LINT_VERSION ?= 1.56.2 +GOLANGCI_LINT_VERSION ?= 1.60.3 # Executes the linter on all our go files inside of the project .PHONY: lint create-golint-config