mirror of
https://github.com/yusing/godoxy.git
synced 2025-06-09 04:52:35 +02:00
chore: updated to go1.24.4
This commit is contained in:
parent
09c244ef3c
commit
c4a780e061
7 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
# Stage 1: deps
|
||||
FROM golang:1.24.3-alpine AS deps
|
||||
FROM golang:1.24.4-alpine AS deps
|
||||
HEALTHCHECK NONE
|
||||
|
||||
# package version does not matter
|
||||
|
|
2
Makefile
2
Makefile
|
@ -31,7 +31,7 @@ endif
|
|||
ifeq ($(debug), 1)
|
||||
CGO_ENABLED = 0
|
||||
GODOXY_DEBUG = 1
|
||||
BUILD_FLAGS += -gcflags=all='-N -l' -tags debug
|
||||
BUILD_FLAGS += -gcflags=all='-N -l' -tags debug -asan
|
||||
else ifeq ($(pprof), 1)
|
||||
CGO_ENABLED = 1
|
||||
GORACE = log_path=logs/pprof strip_path_prefix=$(shell pwd)/ halt_on_error=1
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/yusing/go-proxy/agent
|
||||
|
||||
go 1.24.3
|
||||
go 1.24.4
|
||||
|
||||
replace github.com/yusing/go-proxy => ..
|
||||
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,6 +1,6 @@
|
|||
module github.com/yusing/go-proxy
|
||||
|
||||
go 1.24.3
|
||||
go 1.24.4
|
||||
|
||||
replace github.com/yusing/go-proxy/agent => ./agent
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/yusing/go-proxy/internal/dnsproviders
|
||||
|
||||
go 1.24.3
|
||||
go 1.24.4
|
||||
|
||||
replace github.com/yusing/go-proxy => ../..
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
module github.com/yusing/go-proxy/internal/utils
|
||||
|
||||
go 1.24.3
|
||||
go 1.24.4
|
||||
|
||||
require (
|
||||
github.com/goccy/go-yaml v1.18.0
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue