Skip to content

Commit 1b4e55a

Browse files
committed
Try to fix CI by upgrading to Go 1.23
Signed-off-by: itowlson <[email protected]>
1 parent 2589812 commit 1b4e55a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM mcr.microsoft.com/vscode/devcontainers/rust:0-${VARIANT}
99
# && apt-get -y install --no-install-recommends <your-package-list-here>
1010

1111
# Go installation, see https://go.dev/doc/install
12-
ARG GO_URL="https://go.dev/dl/go1.22.0.linux-amd64.tar.gz"
12+
ARG GO_URL="https://go.dev/dl/go1.23.4.linux-amd64.tar.gz"
1313
RUN curl -sL "$GO_URL" | tar -xzf - -C /usr/local
1414
ENV PATH "$PATH:/usr/local/go/bin"
1515

.github/actions/spin-ci-dependencies/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ inputs:
4646
type: bool
4747
golang-version:
4848
description: 'golang version to setup'
49-
default: '1.22'
49+
default: '1.23.4'
5050
required: false
5151
type: string
5252

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
- uses: goto-bus-stop/setup-zig@v2
201201
- uses: actions/setup-go@v4
202202
with:
203-
go-version: '1.22'
203+
go-version: '1.23.4'
204204
- uses: acifani/setup-tinygo@v2
205205
with:
206206
tinygo-version: '0.35.0'

templates/http-go/content/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/{{project-name | snake_case}}
22

3-
go 1.22
3+
go 1.23
44

55
require github.com/fermyon/spin/sdk/go/v2 v2.2.0
66

templates/redis-go/content/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/{{project-name | snake_case}}
22

3-
go 1.22
3+
go 1.23
44

55
require github.com/fermyon/spin/sdk/go/v2 v2.2.0

0 commit comments

Comments
 (0)