diff --git a/.github/workflows/pb-tests.yml b/.github/workflows/pb-tests.yml index 678436ff..5e3b83d3 100644 --- a/.github/workflows/pb-tests.yml +++ b/.github/workflows/pb-tests.yml @@ -23,7 +23,7 @@ jobs: restore-keys: ${{ runner.os }}-go- - uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" - name: Install richgo run: | #!/usr/bin/env bash diff --git a/.github/workflows/pb-update-go.yml b/.github/workflows/pb-update-go.yml index d35876c6..ad1442f5 100644 --- a/.github/workflows/pb-update-go.yml +++ b/.github/workflows/pb-update-go.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" - uses: actions/checkout@v4 - name: Update Go Version & Modules id: update-go @@ -49,7 +49,7 @@ jobs: echo "commit-body=${COMMIT_BODY}" >> "$GITHUB_OUTPUT" echo "commit-semver=${COMMIT_SEMVER}" >> "$GITHUB_OUTPUT" env: - GO_VERSION: "1.22" + GO_VERSION: "1.23" - uses: peter-evans/create-pull-request@v6 with: author: ${{ secrets.JAVA_GITHUB_USERNAME }} <${{ secrets.JAVA_GITHUB_USERNAME }}@users.noreply.github.com> diff --git a/.github/workflows/pb-update-pipeline.yml b/.github/workflows/pb-update-pipeline.yml index 2c052236..f028b845 100644 --- a/.github/workflows/pb-update-pipeline.yml +++ b/.github/workflows/pb-update-pipeline.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" - name: Install octo run: | #!/usr/bin/env bash diff --git a/actions/Dockerfile b/actions/Dockerfile index a1c1c980..5d87424d 100644 --- a/actions/Dockerfile +++ b/actions/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 as build-stage +FROM golang:1.23 as build-stage WORKDIR /src ENV GO111MODULE=on CGO_ENABLED=0 diff --git a/go.mod b/go.mod index 7506e0e4..7513c9b3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/paketo-buildpacks/pipeline-builder -go 1.22 +go 1.23 require ( cloud.google.com/go/storage v1.43.0 diff --git a/octo/octo.go b/octo/octo.go index 8c0536a4..0a9e191f 100644 --- a/octo/octo.go +++ b/octo/octo.go @@ -29,7 +29,7 @@ import ( const ( CraneVersion = "0.19.1" - GoVersion = "1.22" + GoVersion = "1.23" PackVersion = "0.34.2" BuildpackActionsVersion = "5.7.2" RichGoVersion = "0.3.10"