-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
oauth2 had a transitive dependency on golang.org/x/net, which had a [this CVE][1] reported against it. [1]: https://nvd.nist.gov/vuln/detail/CVE-2024-45338
- Loading branch information
Showing
3 changed files
with
14 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
.PHONY: crawl products | ||
.PHONY: help | ||
help: #! Show this help message | ||
@echo 'Usage: make [target] ... ' | ||
@echo '' | ||
@echo 'Targets:' | ||
@grep -h -F '#!' $(MAKEFILE_LIST) | grep -v grep | sed 's/:.*#!/:/' | column -t -s":" | ||
|
||
# Crawl all the repos and update metadata.sqlite3 with the results. | ||
# GITHUB_TOKEN must be set in the environment. | ||
crawl: | ||
.PHONY: crawl | ||
crawl: #! Crawl all the repos and update metadata.sqlite3 with the results | ||
./scripts/crawl.sh metadata.sqlite3 metadata | ||
|
||
# Generate all the JSON products. | ||
products: | ||
.PHONY: products | ||
products: #! Generate all the JSON products | ||
./scripts/generate-products.sh | ||
|
||
.PHONY: all | ||
all: crawl products |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters