Skip to content

Commit 5940c74

Browse files
committed
Update Go version in CI workflows to 1.23.10 for consistency across environments
1 parent 012492d commit 5940c74

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
go-version: ["1.21", "1.22", "1.23"]
20+
go-version: ["1.21", "1.22", "1.23.10"]
2121

2222
steps:
2323
- name: Checkout code
@@ -59,13 +59,13 @@ jobs:
5959
GO_TEST_TIMEOUT: 300s
6060

6161
- name: Run E2E tests with race detector
62-
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23'
62+
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.10'
6363
run: go test -v -race -timeout 10m ./internal/server -run TestE2E
6464
env:
6565
GO_TEST_TIMEOUT: 600s
6666

6767
- name: Run Logging E2E tests with race detector
68-
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23'
68+
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.10'
6969
run: go test -v -race -timeout 10m ./internal/logs -run TestE2E
7070
env:
7171
GO_TEST_TIMEOUT: 600s
@@ -85,7 +85,7 @@ jobs:
8585
- name: Set up Go
8686
uses: actions/setup-go@v4
8787
with:
88-
go-version: "1.23"
88+
go-version: "1.23.10"
8989

9090
- name: Build mcpproxy
9191
run: go build -o mcpproxy ./cmd/mcpproxy
@@ -154,7 +154,7 @@ jobs:
154154
- name: Set up Go
155155
uses: actions/setup-go@v4
156156
with:
157-
go-version: "1.23"
157+
go-version: "1.23.10"
158158

159159
- name: Run logging unit tests
160160
run: go test -v -race -timeout 2m ./internal/logs
@@ -281,7 +281,7 @@ jobs:
281281
- name: Set up Go
282282
uses: actions/setup-go@v4
283283
with:
284-
go-version: "1.23"
284+
go-version: "1.23.10"
285285

286286
- name: Run concurrent stress tests
287287
run: |

.github/workflows/pr-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
go-version: ["1.22", "1.23"]
12+
go-version: ["1.22", "1.23.10"]
1313

1414
runs-on: ${{ matrix.os }}
1515

@@ -68,7 +68,7 @@ jobs:
6868
- name: Set up Go
6969
uses: actions/setup-go@v5
7070
with:
71-
go-version: "1.23"
71+
go-version: "1.23.10"
7272

7373
- name: Check GoReleaser config
7474
uses: goreleaser/goreleaser-action@v5

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Set up Go
5656
uses: actions/setup-go@v5
5757
with:
58-
go-version: "1.23"
58+
go-version: "1.23.10"
5959

6060
- name: Get version
6161
id: version

.github/workflows/unit-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
go-version: ["1.21", "1.22", "1.23"]
20+
go-version: ["1.21", "1.22", "1.23.10"]
2121

2222
steps:
2323
- name: Checkout code
@@ -51,7 +51,7 @@ jobs:
5151
run: go tool cover -html=coverage.out -o coverage.html
5252

5353
- name: Upload coverage to Codecov
54-
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23'
54+
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.10'
5555
uses: codecov/codecov-action@v4
5656
with:
5757
file: ./coverage.out
@@ -60,7 +60,7 @@ jobs:
6060
fail_ci_if_error: false
6161

6262
- name: Upload coverage artifacts
63-
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23'
63+
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.10'
6464
uses: actions/upload-artifact@v4
6565
with:
6666
name: coverage-report
@@ -82,7 +82,7 @@ jobs:
8282
- name: Set up Go
8383
uses: actions/setup-go@v5
8484
with:
85-
go-version: "1.23"
85+
go-version: "1.23.10"
8686

8787
- name: golangci-lint
8888
uses: golangci/golangci-lint-action@v6
@@ -108,7 +108,7 @@ jobs:
108108
- name: Set up Go
109109
uses: actions/setup-go@v5
110110
with:
111-
go-version: "1.23"
111+
go-version: "1.23.10"
112112

113113
- name: Build
114114
run: go build -v ./cmd/mcpproxy

0 commit comments

Comments
 (0)