Skip to content

Commit 135fe2d

Browse files
committed
chore: drop Bearer scanner and bump Go to 1.25 with dep updates
- Remove Bearer step from the lint workflow and delete bearer.yml - Drop the Bearer reference from CLAUDE.md code quality notes - Bump go.mod directive to 1.25 and shift CI matrix to 1.25/1.26 - Upgrade appleboy/com to v1.2.0 and stretchr/testify to v1.11.1
1 parent f50b2d7 commit 135fe2d

5 files changed

Lines changed: 8 additions & 23 deletions

File tree

.github/workflows/go.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,11 @@ jobs:
3636
version: v2.7
3737
args: --verbose
3838

39-
- name: Bearer
40-
uses: bearer/bearer-action@v2
41-
with:
42-
diff: true
43-
4439
test:
4540
strategy:
4641
matrix:
4742
os: [ubuntu-latest]
48-
go: [1.24, 1.25]
43+
go: [1.25, 1.26]
4944
include:
5045
- os: ubuntu-latest
5146
go-build: ~/.cache/go-build

CLAUDE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
1919
### Code Quality
2020

2121
- Uses golangci-lint for linting (configured in CI)
22-
- Bearer security scanning is enabled (config in bearer.yml)
2322

2423
## Architecture Overview
2524

bearer.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

go.mod

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

3-
go 1.24.0
3+
go 1.25
44

55
require (
6-
github.com/appleboy/com v1.1.1
6+
github.com/appleboy/com v1.2.0
77
github.com/jpillora/backoff v1.0.0
8-
github.com/stretchr/testify v1.10.0
8+
github.com/stretchr/testify v1.11.1
99
go.uber.org/goleak v1.3.0
1010
go.uber.org/mock v0.6.0
1111
)

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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=
1+
github.com/appleboy/com v1.2.0 h1:3jyA+yVofe/uzPHHa7Xrsj7rnDy1sZn/8pYHdzHB3GQ=
2+
github.com/appleboy/com v1.2.0/go.mod h1:XK2kV+JWz/gkzsDPotNJL+aS6XCy5GNlbiTWGvIhqIU=
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=
@@ -11,8 +11,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
1111
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
1212
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1313
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
14-
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
15-
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
14+
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
15+
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
1616
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
1717
go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
1818
go.uber.org/mock v0.6.0 h1:hyF9dfmbgIX5EfOdasqLsWD6xqpNZlXblLB/Dbnwv3Y=

0 commit comments

Comments
 (0)