Skip to content

Commit

Permalink
chore: update go sum
Browse files Browse the repository at this point in the history
  • Loading branch information
axetroy committed Jan 22, 2022
1 parent 1ef32a4 commit bcac8eb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,14 @@ generate-test:
go run cmd/whatchanged/main.go --project=./__test__/vscode-deno HEAD~ > ./__test__/vscode-deno.CHANGELOG.md
go run cmd/whatchanged/main.go 23448a5482359f28a0089b17280dd2a0a0eaef26~9dff4fc6a9d746ffd9dd10215cf04d2fec2edd2a > ./__test__/whatchanged-[23448a5482359f28a0089b17280dd2a0a0eaef26~9dff4fc6a9d746ffd9dd10215cf04d2fec2edd2a].CHANGELOG.md
go run cmd/whatchanged/main.go v0.2.0 > ./__test__/whatchanged-[v0.2.0].CHANGELOG.md
go run cmd/whatchanged/main.go v0.2.0~v0.1.0 > ./__test__/whatchanged-[v0.2.0~v0.1.0].CHANGELOG.md
go run cmd/whatchanged/main.go v0.2.0~v0.1.0 > ./__test__/whatchanged-[v0.2.0~v0.1.0].CHANGELOG.md

update-go-deps:
@echo ">> updating Go dependencies"
@for m in $$(go list -mod=readonly -m -f '{{ if and (not .Indirect) (not .Main)}}{{.Path}}{{end}}' all); do \
go get $$m; \
done
go mod tidy -go=1.18
ifneq (,$(wildcard vendor))
go mod vendor
endif
6 changes: 0 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -233,12 +233,6 @@ github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y8
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
github.com/release-lab/conventional-commit-parser v0.1.5 h1:r4kWlRbh5V4Y0ne3j2A44gCam07rPOkGKWCBBC9z5c4=
github.com/release-lab/conventional-commit-parser v0.1.5/go.mod h1:J56B1fNHAVNm5SynjINkz1mThTKqN0KQnFH54Fuz2KQ=
github.com/release-lab/conventional-commit-parser v0.1.6 h1:GsmmsOBnYtuWubjaTkQYp7KqkvdHNbOirxGtWsUWAww=
github.com/release-lab/conventional-commit-parser v0.1.6/go.mod h1:J56B1fNHAVNm5SynjINkz1mThTKqN0KQnFH54Fuz2KQ=
github.com/release-lab/conventional-commit-parser v0.1.7 h1:aoyrKdOg3rDVhOci6kgqXzLFHV9AJLY58WHbgD3SQaQ=
github.com/release-lab/conventional-commit-parser v0.1.7/go.mod h1:J56B1fNHAVNm5SynjINkz1mThTKqN0KQnFH54Fuz2KQ=
github.com/release-lab/conventional-commit-parser v0.1.8 h1:bXUj66k9pnVq5xAFUtsbyDcF8adXV4ZNgcrJT8hR3Z4=
github.com/release-lab/conventional-commit-parser v0.1.8/go.mod h1:J56B1fNHAVNm5SynjINkz1mThTKqN0KQnFH54Fuz2KQ=
github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=
Expand Down

0 comments on commit bcac8eb

Please sign in to comment.