From d346906059b13ec4342c3107c5860c23cd4824c8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 3 Oct 2024 14:29:31 +0200 Subject: [PATCH] chore(deps): update golang minor version (#161) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .woodpecker/build-package.yml | 2 +- Makefile | 2 +- go.mod | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.woodpecker/build-package.yml b/.woodpecker/build-package.yml index e5087cc..114685c 100644 --- a/.woodpecker/build-package.yml +++ b/.woodpecker/build-package.yml @@ -7,7 +7,7 @@ when: steps: - name: build - image: docker.io/techknowlogick/xgo:go-1.22.x + image: docker.io/techknowlogick/xgo:go-1.23.x commands: - ln -s $(pwd) /source - make release diff --git a/Makefile b/Makefile index 2f00bb8..76a5deb 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ GOFUMPT_PACKAGE_VERSION := v0.7.0 # renovate: datasource=github-releases depName=golangci/golangci-lint GOLANGCI_LINT_PACKAGE_VERSION := v1.61.0 # renovate: datasource=docker depName=docker.io/techknowlogick/xgo -XGO_PACKAGE_VERSION := go-1.22.x +XGO_PACKAGE_VERSION := go-1.23.x EXECUTABLE := wp-matrix diff --git a/go.mod b/go.mod index fd54627..8fc0332 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/thegeeklab/wp-matrix -go 1.22.0 - -toolchain go1.23.1 +go 1.23.2 require ( github.com/microcosm-cc/bluemonday v1.0.27