Skip to content

Commit 5e91da6

Browse files
authored
chore: update container image to go 1.25.1 (#2074)
1 parent d0d643a commit 5e91da6

5 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
- 6379:6379
7777

7878
redis-sentinel:
79-
image: bitnami/redis-sentinel
79+
image: bitnamilegacy/redis-sentinel
8080
env:
8181
REDIS_MASTER_HOST: redis
8282
REDIS_MASTER_SET: redis-1
@@ -86,15 +86,15 @@ jobs:
8686
- 26379:26379
8787

8888
protectedredis:
89-
image: bitnami/redis
89+
image: bitnamilegacy/redis
9090
ports:
9191
- 6380:6380
9292
env:
9393
REDIS_PORT_NUMBER: 6380
9494
REDIS_PASSWORD: AthensPass1
9595

9696
redis-sentinel-protected-redis:
97-
image: bitnami/redis-sentinel
97+
image: bitnamilegacy/redis-sentinel
9898
env:
9999
REDIS_MASTER_HOST: protectedredis
100100
REDIS_MASTER_PORT_NUMBER: 6380

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
VERSION = "unset"
22
DATE=$(shell date -u +%Y-%m-%d-%H:%M:%S-%Z)
33

4-
GOLANGCI_LINT_VERSION=v1.61.0
4+
GOLANGCI_LINT_VERSION=v2.1.6
55

66
ifndef GOLANG_VERSION
7-
override GOLANG_VERSION = 1.23.5
7+
override GOLANG_VERSION = 1.25.1
88
endif
99

1010
.PHONY: build
@@ -22,7 +22,7 @@ athens:
2222
# to perform some CI build steps, instead of relying on them being installed locally
2323
.PHONY: build-image
2424
build-image:
25-
docker build -t athens-build ./scripts/build-image
25+
docker build -t athens-build --build-arg GOLANG_VERSION=${GOLANG_VERSION} ./scripts/build-image
2626

2727
.PHONY: run
2828
run: ## run the athens proxy with dev configs

cmd/proxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# You can override the Go version used to build the image.
66
# See project Makefile if using make.
77
# See docker --build-arg if building directly.
8-
ARG GOLANG_VERSION=1.23.5
8+
ARG GOLANG_VERSION=1.25.1
99

1010
FROM golang:${GOLANG_VERSION}-alpine AS builder
1111

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ services:
8282
ports:
8383
- 6379:6379
8484
redis-sentinel:
85-
image: bitnami/redis-sentinel
85+
image: bitnamilegacy/redis-sentinel
8686
environment:
8787
- REDIS_MASTER_HOST=redis
8888
- REDIS_MASTER_SET=redis-1

scripts/build-image/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM golang:1.23.5-bookworm
1+
ARG GOLANG_VERSION=1.25.1
2+
FROM golang:${GOLANG_VERSION}-bookworm
23

34
WORKDIR /tmp
45

0 commit comments

Comments
 (0)