Skip to content

Commit d31bf94

Browse files
authored
bump version to go1.24 (#827)
* bump version to go1.24 With the release of go 1.24, the versions used must be bumped. Note that the docker image for 1.24 is not yet published. Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com> * changelog Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com> --------- Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
1 parent 82cca5e commit d31bf94

File tree

9 files changed

+35
-9
lines changed

9 files changed

+35
-9
lines changed

.chloggen/codeboten_1.24.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: enhancement
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7+
component: all
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Update minimum go version used in CI
11+
12+
# One or more tracking issues or pull requests related to the change
13+
issues: [827]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# Optional: The change log or logs in which this entry should be included.
21+
# e.g. '[user]' or '[user, api]'
22+
# Include 'user' if the change is relevant to end users.
23+
# Include 'api' if there is a change to a library API.
24+
# Default: '[user]'
25+
change_logs: []
26+

.github/workflows/base-ci-goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Setup Go
6767
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
6868
with:
69-
go-version: '1.23'
69+
go-version: "~1.24"
7070
check-latest: true
7171

7272
- name: Create artifacts directory to store build artifacts

.github/workflows/base-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
5757
with:
58-
go-version: '1.23'
58+
go-version: "~1.24"
5959
check-latest: true
6060

6161
- name: Setup wixl # Required to build MSI packages for Windows
@@ -162,7 +162,7 @@ jobs:
162162

163163
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
164164
with:
165-
go-version: '1.23'
165+
go-version: "~1.24"
166166
check-latest: true
167167

168168
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8

.github/workflows/builder-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Setup Go
4949
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
5050
with:
51-
go-version: ~1.23
51+
go-version: "~1.24"
5252
- name: Log into Docker.io
5353
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
5454
with:

.github/workflows/builder-testbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Setup Go
5353
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
5454
with:
55-
go-version: ~1.23
55+
go-version: "~1.24"
5656
- name: Check GoReleaser
5757
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
5858
with:

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fetch-depth: 0
3434
- uses: actions/setup-go@v5
3535
with:
36-
go-version: "1.22.8"
36+
go-version: "~1.24"
3737
cache: false
3838
- name: Cache Go
3939
id: go-cache

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Go
2121
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2222
with:
23-
go-version: '1.23'
23+
go-version: "~1.24"
2424
check-latest: true
2525

2626
- name: Tidy go.mod files

cmd/builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23-alpine3.20
1+
FROM golang:1.24-alpine3.20
22
RUN apk --update add ca-certificates
33

44
ARG SERVICE_NAME=ocb

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"dependencies"
66
],
77
"constraints": {
8-
"go": "1.22"
8+
"go": "1.23"
99
},
1010
"schedule": ["every tuesday"],
1111
"extends": [

0 commit comments

Comments
 (0)