Skip to content

Commit cd32c5e

Browse files
committed
chore: update CI workflow and dependencies for Go 1.24+
- Update actions/setup-go version from v2.1 to v2.7 in the GitHub workflow - Remove Go 1.23 from the test matrix and set minimum Go version to 1.24 - Upgrade github.com/appleboy/com dependency from v0.4.0 to v1.1.1 Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
1 parent ab43521 commit cd32c5e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup golangci-lint
3434
uses: golangci/golangci-lint-action@v9
3535
with:
36-
version: v2.1
36+
version: v2.7
3737
args: --verbose
3838

3939
- name: Bearer
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
matrix:
4747
os: [ubuntu-latest]
48-
go: [1.23, 1.24, 1.25]
48+
go: [1.24, 1.25]
4949
include:
5050
- os: ubuntu-latest
5151
go-build: ~/.cache/go-build

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/golang-queue/queue
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
6-
github.com/appleboy/com v0.4.0
6+
github.com/appleboy/com v1.1.1
77
github.com/jpillora/backoff v1.0.0
88
github.com/stretchr/testify v1.10.0
99
go.uber.org/goleak v1.3.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/appleboy/com v0.4.0 h1:z6Yx16K5nqnUrT5N40elwvcFFuCbIwJn80FeYXS1H4I=
2-
github.com/appleboy/com v0.4.0/go.mod h1:IbC1mLvqcIYn2YVNJgAYB9XnhbUh1xYKsOzdEOy0n+c=
1+
github.com/appleboy/com v1.1.1 h1:iqu+BzrEcO3Towwi4E0GDRLSEeMBix3gf3LRjn9h8ow=
2+
github.com/appleboy/com v1.1.1/go.mod h1:WKU8+CaWcyLkpm0NLhGA8Wl/yGi3KXfTIXsp7T2ceZc=
33
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
44
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
55
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

0 commit comments

Comments
 (0)