chore: updated to go1.24.4

This commit is contained in:
yusing 2025-06-07 18:54:23 +08:00
parent 09c244ef3c
commit c4a780e061
7 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
# Stage 1: deps # Stage 1: deps
FROM golang:1.24.3-alpine AS deps FROM golang:1.24.4-alpine AS deps
HEALTHCHECK NONE HEALTHCHECK NONE
# package version does not matter # package version does not matter

View file

@ -31,7 +31,7 @@ endif
ifeq ($(debug), 1) ifeq ($(debug), 1)
CGO_ENABLED = 0 CGO_ENABLED = 0
GODOXY_DEBUG = 1 GODOXY_DEBUG = 1
BUILD_FLAGS += -gcflags=all='-N -l' -tags debug BUILD_FLAGS += -gcflags=all='-N -l' -tags debug -asan
else ifeq ($(pprof), 1) else ifeq ($(pprof), 1)
CGO_ENABLED = 1 CGO_ENABLED = 1
GORACE = log_path=logs/pprof strip_path_prefix=$(shell pwd)/ halt_on_error=1 GORACE = log_path=logs/pprof strip_path_prefix=$(shell pwd)/ halt_on_error=1

View file

@ -1,6 +1,6 @@
module github.com/yusing/go-proxy/agent module github.com/yusing/go-proxy/agent
go 1.24.3 go 1.24.4
replace github.com/yusing/go-proxy => .. replace github.com/yusing/go-proxy => ..

2
go.mod
View file

@ -1,6 +1,6 @@
module github.com/yusing/go-proxy module github.com/yusing/go-proxy
go 1.24.3 go 1.24.4
replace github.com/yusing/go-proxy/agent => ./agent replace github.com/yusing/go-proxy/agent => ./agent

View file

@ -1,6 +1,6 @@
module github.com/yusing/go-proxy/internal/dnsproviders module github.com/yusing/go-proxy/internal/dnsproviders
go 1.24.3 go 1.24.4
replace github.com/yusing/go-proxy => ../.. replace github.com/yusing/go-proxy => ../..

View file

@ -1,6 +1,6 @@
module github.com/yusing/go-proxy/internal/utils module github.com/yusing/go-proxy/internal/utils
go 1.24.3 go 1.24.4
require ( require (
github.com/goccy/go-yaml v1.18.0 github.com/goccy/go-yaml v1.18.0

View file

@ -1,6 +1,6 @@
module github.com/yusing/go-proxy/socketproxy module github.com/yusing/go-proxy/socketproxy
go 1.24.3 go 1.24.4
replace github.com/yusing/go-proxy/internal/utils => ../internal/utils replace github.com/yusing/go-proxy/internal/utils => ../internal/utils