Skip to content

Commit fd3c9bd

Browse files
authored
ci: support Go 1.25 and upgrade mod to 1.24.0 (#170)
- Update Go version in go.mod from 1.23.0 to 1.24.0 - Update Go version in Makefile from 1.23.0 to 1.24.0 - Update supported Go version in README.md from1.23 to 1.24 - Update Go version constraint in renovate.json from 1.23.0 to 1.24.0 - Update Go version matrix in GitHub Actions workflow from [1.23.x, 1.24.x] to [1.24.x, 1.25.x]
1 parent b235774 commit fd3c9bd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: "go test"
1515
strategy:
1616
matrix:
17-
go-version: [ 1.23.x, 1.24.x ]
17+
go-version: [ 1.24.x, 1.25.x ]
1818
platform: [ ubuntu-latest, windows-latest, macos-latest ]
1919
runs-on: ${{ matrix.platform }}
2020

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ init:
55

66
.PHONY: go-mod-tidy
77
go-mod-tidy:
8-
go mod tidy -compat=1.23.0
8+
go mod tidy -compat=1.24.0
99
@echo "✅ Go modules tidied"
1010

1111
.PHONY: lint

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 🚀 Go-Tapd-SDK
22

3-
![Supported Go Versions](https://img.shields.io/badge/Go-%3E%3D1.23-blue)
3+
![Supported Go Versions](https://img.shields.io/badge/Go-%3E%3D1.24-blue)
44
[![Package Version](https://badgen.net/github/release/go-tapd/tapd/stable)](https://github.com/go-tapd/tapd/releases)
55
[![GoDoc](https://pkg.go.dev/badge/github.com/go-tapd/tapd)](https://pkg.go.dev/github.com/go-tapd/tapd)
66
[![codecov](https://codecov.io/gh/go-tapd/tapd/graph/badge.svg?token=QPTHZ5L9GT)](https://codecov.io/gh/go-tapd/tapd)

go.mod

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

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/davecgh/go-spew v1.1.1

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"separateMajorMinor": true,
88
"postUpdateOptions": ["gomodTidy"],
99
"constraints": {
10-
"go": "1.23.0"
10+
"go": "1.24.0"
1111
},
1212
"packageRules": [
1313
{

0 commit comments

Comments
 (0)