Skip to content

Commit 1a73db5

Browse files
authored
Set language version to go1.23, build with go1.24 (#127)
go1.22 is no longer supported, which means newer versions of certain dependencies (golang.org/x/net right now) require 1.23 as the minimum version.
1 parent f6c149e commit 1a73db5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v5
1818
with:
19-
go-version: "1.23"
19+
go-version: "1.24"
2020

2121
- name: Checkout
2222
uses: actions/checkout@v4
2323

2424
- name: Lint
2525
uses: golangci/[email protected]
2626
with:
27-
version: v1.60
27+
version: v1.64
2828

2929
- name: Test
3030
run: go test -v ./...

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Go
1515
uses: actions/setup-go@v5
1616
with:
17-
go-version: "1.23"
17+
go-version: "1.24"
1818

1919
- name: Checkout
2020
uses: actions/checkout@v4

go.mod

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

3-
go 1.22.0
3+
go 1.23.0
44

55
require (
66
github.com/bluekeyes/go-gitdiff v0.8.1

0 commit comments

Comments
 (0)