Skip to content

Commit 34f7f6f

Browse files
authored
Merge pull request #1183 from embano1/go-version
Update Go version in workflows
2 parents 0a1147c + cafbb12 commit 34f7f6f

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/conformance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: CloudEvents Conformance
1616
strategy:
1717
matrix:
18-
go-version: [1.23]
18+
go-version: [1.24]
1919
platform: [ubuntu-latest]
2020

2121
runs-on: ${{ matrix.platform }}

.github/workflows/go-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build
1616
strategy:
1717
matrix:
18-
go-version: [1.23]
18+
go-version: [1.24]
1919
platform: [ubuntu-latest]
2020

2121
runs-on: ${{ matrix.platform }}

.github/workflows/go-format.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Go
2323
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2424
with:
25-
go-version: 1.23
25+
go-version: 1.24
2626
cache-dependency-path: v2/go.sum
2727
id: go
2828

.github/workflows/go-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Go
2323
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2424
with:
25-
go-version: 1.23
25+
go-version: 1.24
2626
cache-dependency-path: v2/go.sum
2727
id: go
2828

.github/workflows/go-unit-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Unit Test
1616
strategy:
1717
matrix:
18-
go-version: [1.23]
18+
go-version: [1.24]
1919
platform: [ubuntu-latest]
2020

2121
runs-on: ${{ matrix.platform }}

.github/workflows/integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
# Only test one go version: the integration tests don't seem to pass if NATS runs more one running at a time.
19-
go-version: [1.23]
19+
go-version: [1.24]
2020
platform: [ubuntu-latest]
2121

2222
runs-on: ${{ matrix.platform }}

.github/workflows/observability.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: CloudEvents Observability
1616
strategy:
1717
matrix:
18-
go-version: [1.23]
18+
go-version: [1.24]
1919
platform: [ubuntu-latest]
2020

2121
runs-on: ${{ matrix.platform }}

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Go
1919
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2020
with:
21-
go-version: 1.23
21+
go-version: 1.24
2222
cache-dependency-path: v2/go.sum
2323

2424
- name: Install Dependencies
@@ -66,7 +66,7 @@ jobs:
6666
- name: Set up Go
6767
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
6868
with:
69-
go-version: 1.23
69+
go-version: 1.24
7070
cache-dependency-path: v2/go.sum
7171

7272
- run: git pull
@@ -99,7 +99,7 @@ jobs:
9999
- name: Set up Go
100100
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
101101
with:
102-
go-version: 1.23
102+
go-version: 1.24
103103
cache-dependency-path: v2/go.sum
104104

105105
- name: Checkout Code

.github/workflows/update-dependencies.yml

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@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2222
with:
23-
go-version: 1.23
23+
go-version: 1.24
2424
cache-dependency-path: v2/go.sum
2525

2626
- name: Run update dependencies script

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This library will help you to:
2020
_Note:_ Supported
2121
[CloudEvents specification](https://github.com/cloudevents/spec): 0.3, 1.0
2222

23-
_Note:_ Tested and supported go version(s): 1.23+
23+
_Note:_ Minimum Go version required: 1.23 (tested with 1.24+)
2424

2525
## Get started
2626

0 commit comments

Comments
 (0)