diff --git a/.woodpecker/build-package.yml b/.woodpecker/build-package.yml index 8f9c72a..49de497 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.3 + image: docker.io/techknowlogick/xgo:go-1.23.4 commands: - ln -s $(pwd) /source - make release diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 81ee122..090bd83 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -7,11 +7,11 @@ when: steps: - name: lint - image: docker.io/library/golang:1.23.3 + image: docker.io/library/golang:1.23.4 commands: - make lint - name: test - image: docker.io/library/golang:1.23.3 + image: docker.io/library/golang:1.23.4 commands: - make test diff --git a/Makefile b/Makefile index 6c5a650..9b112ba 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.62.2 # renovate: datasource=docker depName=docker.io/techknowlogick/xgo -XGO_PACKAGE_VERSION := go-1.23.3 +XGO_PACKAGE_VERSION := go-1.23.4 EXECUTABLE := url-parser diff --git a/go.mod b/go.mod index 2ff84d0..5c13f49 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/thegeeklab/url-parser -go 1.23.3 +go 1.23.4 require ( github.com/rs/zerolog v1.33.0