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/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
Loading