Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ updates:
allow:
- dependency-type: direct

- package-ecosystem: gomod
directory: /tools/sbom # syft, kept outside the go workspace

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same question as #20303 (comment)

schedule:
interval: weekly
allow:
- dependency-type: direct

- package-ecosystem: docker
directory: /
schedule:
Expand Down
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,23 +100,31 @@ fuzz:

# Static analysis
.PHONY: verify
verify: verify-bom verify-lint verify-dep verify-shellcheck verify-mod-tidy \
verify: verify-bom verify-modern-sbom verify-lint verify-dep verify-shellcheck verify-mod-tidy \
verify-shellws verify-proto-annotations verify-genproto verify-yamllint \
verify-markdown-marker verify-go-versions verify-gomodguard \
verify-go-workspace verify-grpc-experimental

.PHONY: fix
fix: fix-mod-tidy fix-bom fix-lint fix-yamllint sync-toolchain-directive \
fix: fix-mod-tidy fix-bom fix-modern-sbom fix-lint fix-yamllint sync-toolchain-directive \
update-go-workspace fix-shell-ws

.PHONY: verify-bom
verify-bom:
PASSES="bom" ./scripts/test.sh

.PHONY: verify-modern-sbom
verify-modern-sbom:
./scripts/verify_modern_sbom.sh

.PHONY: fix-bom
fix-bom:
./scripts/fix/bom.sh

.PHONY: fix-modern-sbom
fix-modern-sbom:
./scripts/fix/modern-sbom.sh

.PHONY: verify-dep
verify-dep:
PASSES="dep" ./scripts/test.sh
Expand Down
Loading