diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7e9058..b225d85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,8 +59,9 @@ jobs: - uses: actions/setup-go@v6 with: go-version-file: go.mod - - run: go install golang.org/x/vuln/cmd/govulncheck@latest - - run: govulncheck ./... + - run: go build -o dit-bin ./cmd/dit + - run: go install golang.org/x/vuln/cmd/govulncheck@v1.1.4 + - run: govulncheck -mode=binary dit-bin release: name: Release diff --git a/README.md b/README.md index 0e69117..a0059d1 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,11 @@ Cross-validation results (10-fold, grouped by domain): Trained on 1000+ annotated web forms and 754 annotated web pages. +## Used By + +- [katana](https://github.com/projectdiscovery/katana) - A next-generation crawling and spidering framework +- [httpx](https://github.com/projectdiscovery/httpx) - A fast and multi-purpose HTTP toolkit + ## Contributing See [CONTRIBUTING.md](CONTRIBUTING.md). diff --git a/go.mod b/go.mod index 3e9ca21..1559853 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/happyhackingspace/dit -go 1.25.7 +go 1.25.8 require ( github.com/PuerkitoBio/goquery v1.11.0