Skip to content

Commit 3c0d71c

Browse files
committed
bump golang version
1 parent f881b6f commit 3c0d71c

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v6
1919
with:
20-
go-version: '1.23'
20+
go-version: '1.25'
2121

2222
- name: golangci-lint
2323
uses: golangci/golangci-lint-action@v9
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
os: [ubuntu-latest, macos-latest, windows-latest]
34-
go-version: ['1.22', '1.23']
34+
go-version: ['1.25']
3535
steps:
3636
- name: Checkout code
3737
uses: actions/checkout@v6
@@ -48,9 +48,9 @@ jobs:
4848
run: go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
4949

5050
- name: Upload coverage to Codecov
51-
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23'
51+
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.25'
5252
uses: codecov/codecov-action@v5
5353
with:
54-
file: ./coverage.out
54+
files: ./coverage.out
5555
flags: unittests
5656
fail_ci_if_error: false

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v6
2121
with:
22-
go-version: '1.23'
22+
go-version: '1.25'
2323

2424
- name: Run tests
2525
run: go test -v -race ./...

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This guide covers everything you need to know to develop and contribute to teapo
1616

1717
## Prerequisites
1818

19-
- Go 1.23 or later
19+
- Go 1.25 or later
2020
- Git
2121
- A code editor (GoLand, VS Code, or similar)
2222

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/mallardduck/teapot-router
22

3-
go 1.23
3+
go 1.25
44

55
require (
66
github.com/go-chi/chi/v5 v5.2.4

0 commit comments

Comments
 (0)