File tree Expand file tree Collapse file tree 5 files changed +86
-4
lines changed
Expand file tree Collapse file tree 5 files changed +86
-4
lines changed Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+ version : 2
7+ updates :
8+ - package-ecosystem : " gomod" # See documentation for possible values
9+ directory : " /" # Location of package manifests
10+ schedule :
11+ interval : " weekly"
Original file line number Diff line number Diff line change 1+ name : goreleaser
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ # run only against tags
7+ tags :
8+ - " v*"
9+
10+ permissions :
11+ contents : write
12+ # packages: write
13+ # issues: write
14+ # id-token: write
15+
16+ jobs :
17+ goreleaser :
18+ runs-on : ubuntu-latest
19+ steps :
20+ - name : Checkout
21+ uses : actions/checkout@v4
22+ with :
23+ fetch-depth : 0
24+ - name : Set up Go
25+ uses : actions/setup-go@v5
26+ with :
27+ go-version : stable
28+ - name : Run GoReleaser
29+ uses : goreleaser/goreleaser-action@v6
30+ with :
31+ version : " ~> v2"
32+ args : release --clean
33+ env :
34+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ version : 2
2+
3+ before :
4+ hooks :
5+ - go mod tidy
6+ - go test
7+
8+ builds :
9+ - main : ./
10+ binary : please
11+ env :
12+ - CGO_ENABLED=0
13+ goos :
14+ - linux
15+ - windows
16+ - darwin
17+
18+ archives :
19+ - format : zip
20+ name_template : >-
21+ {{ .ProjectName }}_
22+ {{- if eq .Os "darwin" }}MacOS
23+ {{- else}}{{- title .Os }}{{ end }}_
24+ {{- if eq .Arch "amd64" }}x86_64
25+ {{- else if eq .Arch "386" }}i386
26+ {{- else }}{{ .Arch }}{{ end }}
27+ {{- if .Arm }}v{{ .Arm }}{{ end }}
28+ files :
29+ - LICENSE
30+ - README.md
31+
32+ changelog :
33+ sort : asc
34+ filters :
35+ exclude :
36+ - " ^docs:"
37+ - " ^test:"
Original file line number Diff line number Diff line change 11module github.com/stilvoid/please
22
3- go 1.19
3+ go 1.23.4
44
55require (
66 github.com/andrew-d/go-termutil v0.0.0-20150726205930-009166a695a2
77 github.com/clbanning/mxj v1.8.4
88 github.com/jmespath/go-jmespath v0.4.0
99 github.com/pborman/getopt v1.1.0
10- golang.org/x/net v0.16 .0
10+ golang.org/x/net v0.34 .0
1111 gopkg.in/yaml.v2 v2.4.0
1212)
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ github.com/pborman/getopt v1.1.0/go.mod h1:FxXoW1Re00sQG/+KIkuSqRL/LwQgSkv7uyac+
1313github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
1414github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
1515github.com/stretchr/objx v0.1.0 /go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME =
16- golang.org/x/net v0.16 .0 h1:7eBu7KsSvFDtSXUIDbh3aqlK4DPsZ1rByC8PFfBThos =
17- golang.org/x/net v0.16 .0 /go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE =
16+ golang.org/x/net v0.34 .0 h1:Mb7Mrk043xzHgnRM88suvJFwzVrRfHEHJEl5/71CKw0 =
17+ golang.org/x/net v0.34 .0 /go.mod h1:di0qlW3YNM5oh6GqDGQr92MyTozJPmybPK4Ev/Gm31k =
1818gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
1919gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
2020gopkg.in/yaml.v2 v2.2.8 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
You can’t perform that action at this time.
0 commit comments