Skip to content

Commit 53da38e

Browse files
Merge pull request #109 from buildpulse/codeowners
Support CODEOWNERS file autodetection with optional disable
2 parents e25a5b6 + 4e4492c commit 53da38e

File tree

5 files changed

+193
-113
lines changed

5 files changed

+193
-113
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Go 1.x
1515
uses: actions/setup-go@v2
1616
with:
17-
go-version: "1.21"
17+
go-version: "1.24"
1818
check-latest: true
1919
id: go
2020

@@ -61,7 +61,7 @@ jobs:
6161
- name: Set up Go 1.x
6262
uses: actions/setup-go@v2
6363
with:
64-
go-version: "1.21"
64+
go-version: "1.24"
6565
check-latest: true
6666

6767
- name: Install govulncheck
@@ -82,7 +82,7 @@ jobs:
8282
- name: Set up Go 1.x
8383
uses: actions/setup-go@v2
8484
with:
85-
go-version: "1.21"
85+
go-version: "1.24"
8686
check-latest: true
8787
id: go
8888

@@ -122,12 +122,12 @@ jobs:
122122
- name: Set up Go
123123
uses: actions/setup-go@v2
124124
with:
125-
go-version: 1.21
125+
go-version: 1.24
126126
check-latest: true
127127
- name: Install upx
128128
run: brew install upx
129129
- name: Run GoReleaser
130-
uses: goreleaser/goreleaser-action@v2
130+
uses: goreleaser/goreleaser-action@v6.3.0
131131
with:
132132
version: latest
133133
args: release --rm-dist

go.mod

+16-15
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
module github.com/buildpulse/test-reporter
22

3-
go 1.21
3+
go 1.24
44

55
require (
66
github.com/aws/aws-sdk-go v1.50.11
77
github.com/caarlos0/env/v6 v6.10.1
88
github.com/dnaeon/go-vcr v1.2.0
9-
github.com/go-git/go-git/v5 v5.11.0
9+
github.com/go-git/go-git/v5 v5.13.0
1010
github.com/google/uuid v1.3.0
1111
github.com/mholt/archiver/v3 v3.5.1
1212
github.com/otiai10/copy v1.9.0
13-
github.com/stretchr/testify v1.8.4
13+
github.com/stretchr/testify v1.10.0
1414
gopkg.in/yaml.v3 v3.0.1
1515
)
1616

1717
require (
1818
dario.cat/mergo v1.0.0 // indirect
1919
github.com/Microsoft/go-winio v0.6.1 // indirect
20-
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
20+
github.com/ProtonMail/go-crypto v1.1.3 // indirect
2121
github.com/andybalholm/brotli v1.0.1 // indirect
22-
github.com/cloudflare/circl v1.3.3 // indirect
23-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
22+
github.com/cloudflare/circl v1.3.7 // indirect
23+
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
2424
github.com/davecgh/go-spew v1.1.1 // indirect
2525
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
2626
github.com/emirpasic/gods v1.18.1 // indirect
2727
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
28-
github.com/go-git/go-billy/v5 v5.5.0 // indirect
28+
github.com/go-git/go-billy/v5 v5.6.0 // indirect
2929
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3030
github.com/golang/snappy v0.0.2 // indirect
3131
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
@@ -37,16 +37,17 @@ require (
3737
github.com/pierrec/lz4/v4 v4.1.2 // indirect
3838
github.com/pjbgf/sha1cd v0.3.0 // indirect
3939
github.com/pmezard/go-difflib v1.0.0 // indirect
40-
github.com/sergi/go-diff v1.1.0 // indirect
41-
github.com/skeema/knownhosts v1.2.1 // indirect
40+
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
41+
github.com/skeema/knownhosts v1.3.0 // indirect
4242
github.com/ulikunitz/xz v0.5.9 // indirect
4343
github.com/xanzy/ssh-agent v0.3.3 // indirect
4444
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
45-
golang.org/x/crypto v0.17.0 // indirect
46-
golang.org/x/mod v0.12.0 // indirect
47-
golang.org/x/net v0.19.0 // indirect
48-
golang.org/x/sys v0.15.0 // indirect
49-
golang.org/x/tools v0.13.0 // indirect
45+
golang.org/x/crypto v0.35.0 // indirect
46+
golang.org/x/mod v0.17.0 // indirect
47+
golang.org/x/net v0.33.0 // indirect
48+
golang.org/x/sync v0.10.0 // indirect
49+
golang.org/x/sys v0.30.0 // indirect
50+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
5051
gopkg.in/warnings.v0 v0.1.2 // indirect
51-
gopkg.in/yaml.v2 v2.3.0 // indirect
52+
gopkg.in/yaml.v2 v2.4.0 // indirect
5253
)

0 commit comments

Comments
 (0)