diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eeafd1d..c96377c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 ./... diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3201495..8078d21 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index bd2d93d..b9521a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-bookworm as build +FROM golang:1.23-bookworm AS build WORKDIR /go/src/app diff --git a/example/ccliwrapper.yaml b/example/ccliwrapper.yaml index 945315c..009b99c 100644 --- a/example/ccliwrapper.yaml +++ b/example/ccliwrapper.yaml @@ -24,7 +24,7 @@ tools: imageName: golang imageTag: type: Fixed - value: "1.22" + value: "1.23" workDir: /app command: type: ReuseName @@ -148,7 +148,7 @@ tools: imageName: alpine/helm imageTag: type: Fixed - value: "3.15.1" + value: "3.16.4" command: type: DoNotSpecify mounts: diff --git a/go.mod b/go.mod index d7c5e46..9c8f1c0 100644 --- a/go.mod +++ b/go.mod @@ -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