Skip to content

Commit

Permalink
Merge pull request #51 from aspettl/go-1.23
Browse files Browse the repository at this point in the history
Upgrade to Go 1.23
  • Loading branch information
aspettl authored Jan 6, 2025
2 parents 4109543 + ab12ce1 commit 7c34ce2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"

- name: Build
run: go build -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-bookworm as build
FROM golang:1.23-bookworm AS build

WORKDIR /go/src/app

Expand Down
4 changes: 2 additions & 2 deletions example/ccliwrapper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tools:
imageName: golang
imageTag:
type: Fixed
value: "1.22"
value: "1.23"
workDir: /app
command:
type: ReuseName
Expand Down Expand Up @@ -148,7 +148,7 @@ tools:
imageName: alpine/helm
imageTag:
type: Fixed
value: "3.15.1"
value: "3.16.4"
command:
type: DoNotSpecify
mounts:
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/aspettl/ccliwrapper

go 1.22
go 1.23

toolchain go1.22.0
toolchain go1.23.0

require (
github.com/spf13/cobra v1.8.1
Expand Down

0 comments on commit 7c34ce2

Please sign in to comment.