File tree 7 files changed +9
-9
lines changed
7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- ARG GOLANG_VERSION=1.23.4
1
+ ARG GOLANG_VERSION=1.23.5
2
2
FROM golang:$GOLANG_VERSION
3
3
4
4
RUN echo $GOLANG_VERSION
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ DATE=$(shell date -u +%Y-%m-%d-%H:%M:%S-%Z)
4
4
GOLANGCI_LINT_VERSION =v1.61.0
5
5
6
6
ifndef GOLANG_VERSION
7
- override GOLANG_VERSION = 1.23.4
7
+ override GOLANG_VERSION = 1.23.5
8
8
endif
9
9
10
10
.PHONY : build
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ environment:
10
10
GOPROXY : https://proxy.golang.org
11
11
SKIP_UNTIL_113 : true
12
12
13
- stack : go 1.23.4
13
+ stack : go 1.23.5
14
14
15
15
test_script :
16
16
- go version
Original file line number Diff line number Diff line change 5
5
# You can override the Go version used to build the image.
6
6
# See project Makefile if using make.
7
7
# See docker --build-arg if building directly.
8
- ARG GOLANG_VERSION=1.23.4
8
+ ARG GOLANG_VERSION=1.23.5
9
9
ARG ALPINE_VERSION=3.20
10
10
11
11
FROM golang:${GOLANG_VERSION}-alpine AS builder
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ services:
5
5
context : .
6
6
dockerfile : cmd/proxy/Dockerfile
7
7
args :
8
- GOLANG_VERSION : " 1.23.4 "
8
+ GOLANG_VERSION : " 1.23.5 "
9
9
environment :
10
10
- ATHENS_MONGO_STORAGE_URL=mongodb://mongo:27017
11
11
- TIMEOUT=20 # in case the mongo dependency takes longer to start up
@@ -20,7 +20,7 @@ services:
20
20
context : .
21
21
dockerfile : Dockerfile.test
22
22
args :
23
- GOLANG_VERSION : " 1.23.4 "
23
+ GOLANG_VERSION : " 1.23.5 "
24
24
command : ["./scripts/test_unit.sh"]
25
25
environment :
26
26
- GO_ENV=test
@@ -36,7 +36,7 @@ services:
36
36
context : .
37
37
dockerfile : Dockerfile.test
38
38
args :
39
- GOLANG_VERSION : " 1.23.4 "
39
+ GOLANG_VERSION : " 1.23.5 "
40
40
command : ["./scripts/test_e2e.sh"]
41
41
azurite :
42
42
image : arafato/azurite:2.6.5
Original file line number Diff line number Diff line change 1
1
module github.com/gomods/athens
2
2
3
- go 1.23.4
3
+ go 1.23.5
4
4
5
5
require (
6
6
cloud.google.com/go/storage v1.45.0
Original file line number Diff line number Diff line change 1
- FROM golang:1.23.4 -bookworm
1
+ FROM golang:1.23.5 -bookworm
2
2
3
3
WORKDIR /tmp
4
4
You can’t perform that action at this time.
0 commit comments