diff --git a/.woodpecker/build-package.yml b/.woodpecker/build-package.yml index 5272e44..8f9c72a 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.2 + image: docker.io/techknowlogick/xgo:go-1.23.3 commands: - ln -s $(pwd) /source - make release diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index fb7eb38..81ee122 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -7,11 +7,11 @@ when: steps: - name: lint - image: docker.io/library/golang:1.23.2 + image: docker.io/library/golang:1.23.3 commands: - make lint - name: test - image: docker.io/library/golang:1.23.2 + image: docker.io/library/golang:1.23.3 commands: - make test diff --git a/Makefile b/Makefile index 50cbdfb..702112c 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.2 +XGO_PACKAGE_VERSION := go-1.23.3 EXECUTABLE := url-parser diff --git a/go.mod b/go.mod index 6b5f977..4634341 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/thegeeklab/url-parser -go 1.23.2 +go 1.23.3 require ( github.com/rs/zerolog v1.33.0