Skip to content

Commit aa3d5fc

Browse files
chore(deps): update dependency go to v1.26.1 (#87)
* chore(deps): update dependency go to v1.26.1 * Bump Golang version consistently --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Joel Scheuner <joel.scheuner.dev@gmail.com>
1 parent 3335deb commit aa3d5fc

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
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

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aws/aws-lambda-runtime-interface-emulator
22

3-
go 1.26
3+
go 1.26.1
44

55
require (
66
github.com/aws/aws-lambda-go v1.52.0
@@ -14,7 +14,6 @@ require (
1414
github.com/jessevdk/go-flags v1.6.1
1515
github.com/orcaman/concurrent-map v1.0.0
1616
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
17-
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
1817
github.com/shirou/gopsutil v2.21.11+incompatible
1918
github.com/sirupsen/logrus v1.9.4
2019
github.com/stretchr/testify v1.10.0

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
3131
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
3232
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 h1:lZUw3E0/J3roVtGQ+SCrUrg3ON6NgVqpn3+iol9aGu4=
3333
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1/go.mod h1:uToXkOrWAZ6/Oc07xWQrPOhJotwFIyu2bBVN41fcDUY=
34-
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2/go.mod h1:JXeL+ps8p7/KNMjDQk3TCwPpBy0wYklyWTfbkIzdIFU=
3534
github.com/shirou/gopsutil v2.21.11+incompatible h1:lOGOyCG67a5dv2hq5Z1BLDUqqKp3HkbjPcz5j6XMS0U=
3635
github.com/shirou/gopsutil v2.21.11+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA=
3736
github.com/sirupsen/logrus v1.9.4 h1:TsZE7l11zFCLZnZ+teH4Umoq5BhEIfIzfRDZ1Uzql2w=

0 commit comments

Comments
 (0)