Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/orca-ecr-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.8
go-version: 1.25.4

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/orca.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.8
go-version: 1.25.4

- name: Build Docker Image Locally
run: |
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/observeinc/aws-sam-apps

go 1.24.6
go 1.25.4

require (
github.com/aws/aws-lambda-go v1.47.0
Expand Down
2 changes: 1 addition & 1 deletion variables.mk
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ GO_BUILD_DIRS := bin/$(OS)_$(ARCH) \
.go/cache \
.go/pkg
# Build image to use for building lambda functions
GO_BUILD_IMAGE ?= golang:1.24.6-alpine
GO_BUILD_IMAGE ?= golang:1.25.4-alpine
# Which Go modules mode to use ("mod" or "vendor")
GO_MOD ?= vendor
GOFLAGS ?=
Expand Down