Skip to content

Commit 5f6c87f

Browse files
committed
Bump Golang version consistently
1 parent 4ad87d9 commit 5f6c87f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v6
1919
with:
20-
go-version: '1.26'
20+
go-version: '1.26.1'
2121

2222
- name: Run tests
2323
run: make tests-with-docker
@@ -31,7 +31,7 @@ jobs:
3131
- name: Set up Go
3232
uses: actions/setup-go@v6
3333
with:
34-
go-version: '1.26'
34+
go-version: '1.26.1'
3535

3636
- name: Build
3737
env:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ GO_ARCH_arm64 := arm64
1212
DESTINATION_x86_64 := bin/${BINARY_NAME}-x86_64
1313
DESTINATION_arm64 := bin/${BINARY_NAME}-arm64
1414

15-
run_in_docker = docker run --env GOPROXY=direct -v $(shell pwd):/LambdaRuntimeLocal -w /LambdaRuntimeLocal golang:1.26 $(1)
15+
run_in_docker = docker run --env GOPROXY=direct -v $(shell pwd):/LambdaRuntimeLocal -w /LambdaRuntimeLocal golang:1.26.1 $(1)
1616

1717
compile-with-docker-all:
1818
$(call run_in_docker, make compile-lambda-linux-all)

debugging/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Golang EOL overview: https://endoflife.date/go
2-
DOCKER_GOLANG_IMAGE ?= golang:1.26-bookworm
2+
DOCKER_GOLANG_IMAGE ?= golang:1.26.1-bookworm
33

44
# On ARM hosts, use: make ARCH=arm64 build-init
55
# Check host architecture: uname -m

0 commit comments

Comments
 (0)