From 6eb49d069137913a42a091536a2f0a478338770c Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 7 Nov 2024 10:36:47 +0100 Subject: [PATCH] consistently pin to golang patch version --- .woodpecker/build-package.yml | 2 +- .woodpecker/test.yml | 4 ++-- Makefile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker/build-package.yml b/.woodpecker/build-package.yml index 114685c..5272e44 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.23.x + image: docker.io/techknowlogick/xgo:go-1.23.2 commands: - ln -s $(pwd) /source - make release diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 9fb9867..fb7eb38 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -7,11 +7,11 @@ when: steps: - name: lint - image: docker.io/library/golang:1.23 + image: docker.io/library/golang:1.23.2 commands: - make lint - name: test - image: docker.io/library/golang:1.23 + image: docker.io/library/golang:1.23.2 commands: - make test diff --git a/Makefile b/Makefile index a98818b..50cbdfb 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.23.x +XGO_PACKAGE_VERSION := go-1.23.2 EXECUTABLE := url-parser