{"id":31058444,"url":"https://github.com/nivl/check-go-deps","last_synced_at":"2025-09-15T07:51:07.295Z","repository":{"id":137517813,"uuid":"181259154","full_name":"Nivl/check-go-deps","owner":"Nivl","description":"Scans all modules of a Go project and reports the outdated ones","archived":false,"fork":false,"pushed_at":"2019-05-02T07:30:55.000Z","size":65,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-05T01:26:05.735Z","etag":null,"topics":["dependencies","go","go-mod","go-modules","go-tools","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Nivl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-04-14T04:13:07.000Z","updated_at":"2020-03-11T04:49:49.000Z","dependencies_parsed_at":"2024-06-20T11:58:26.611Z","dependency_job_id":"1a3f307c-1e36-45bc-8709-a16638e5408f","html_url":"https://github.com/Nivl/check-go-deps","commit_stats":null,"previous_names":["nivl/check-deps"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Nivl/check-go-deps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nivl%2Fcheck-go-deps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nivl%2Fcheck-go-deps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nivl%2Fcheck-go-deps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nivl%2Fcheck-go-deps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nivl","download_url":"https://codeload.github.com/Nivl/check-go-deps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nivl%2Fcheck-go-deps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275225867,"owners_count":25427000,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-15T02:00:09.272Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dependencies","go","go-mod","go-modules","go-tools","golang"],"created_at":"2025-09-15T07:51:03.006Z","updated_at":"2025-09-15T07:51:07.286Z","avatar_url":"https://github.com/Nivl.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# check-go-deps\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/nivl/check-go-deps)](https://goreportcard.com/report/github.com/nivl/check-go-deps)\n\nCheck dep is a program that parses the `go.mod` a of package (current\ndirectory) and prints all the modules that need to be updated, or that haven't\nreceived any updates in the last 6 months (they might no longer be maintained).\n\n## Install\n\n`go get -u github.com/Nivl/check-go-deps`\n\n## usage\n\n`check-go-deps [flags]`\n\n| Flag         | Description                                             |\n| ------------ | ------------------------------------------------------- |\n| --old        | check for modules without updates for the last 6 months |\n| --ignore, -i | coma separated list of packages to ignore               |\n| --indirect   | check indirect modules                                  |\n\n## Output\n\n```\n❯ check-go-deps --old --indirect -i github.com/Nivl\n+-------------------------------------+------------------------------------+------------------------------------+----------+\n|               MODULE                |          CURRENT VERSION           |            NEW VERSION             | INDIRECT |\n+-------------------------------------+------------------------------------+------------------------------------+----------+\n| golang.org/x/crypto                 | v0.0.0-20181001203147-e3636079e1a4 | v0.0.0-20190426145343-a29dc8fdc734 |  false   |\n| golang.org/x/lint                   | v0.0.0-20180702182130-06c8688daad7 | v0.0.0-20190409202823-959b441ac422 |   true   |\n| golang.org/x/net                    | v0.0.0-20181005035420-146acd28ed58 | v0.0.0-20190501004415-9ce7a6920f09 |  false   |\n| golang.org/x/oauth2                 | v0.0.0-20181003184128-c57b0facaced | v0.0.0-20190402181905-9f3314589c9a |  false   |\n| golang.org/x/sync                   | v0.0.0-20180314180146-1d60e4601c6f | v0.0.0-20190423024810-112230192c58 |   true   |\n| golang.org/x/sys                    | v0.0.0-20181005133103-4497e2df6f9e | v0.0.0-20190429190828-d89cdac9e872 |  false   |\n| golang.org/x/text                   |               v0.3.0               |               v0.3.2               |  false   |\n| golang.org/x/tools                  | v0.0.0-20180828015842-6cd1fcedba52 | v0.0.0-20190501045030-23463209683d |   true   |\n| google.golang.org/api               | v0.0.0-20181007000908-c21459d81882 |               v0.4.0               |  false   |\n| google.golang.org/appengine         |               v1.2.0               |               v1.5.0               |  false   |\n| google.golang.org/genproto          | v0.0.0-20181004005441-af9cb2a35e7f | v0.0.0-20190425155659-357c62f0e4bb |  false   |\n| google.golang.org/grpc              |              v1.15.0               |              v1.20.1               |  false   |\n| honnef.co/go/tools                  | v0.0.0-20180728063816-88497007e858 | v0.0.0-20190418001031-e561f6794a2a |   true   |\n+-------------------------------------+------------------------------------+------------------------------------+----------+\n\n+--------------------------------------------------+----------------------------+----------+\n|                      MODULE                      |        LAST UPDATE         | INDIRECT |\n+--------------------------------------------------+----------------------------+----------+\n| github.com/bsphere/le_go                         | 26 months ago (2017/02/15) |  false   |\n| github.com/client9/misspell                      | 13 months ago (2018/03/09) |   true   |\n| github.com/davecgh/go-spew                       | 14 months ago (2018/02/21) |  false   |\n| github.com/dchest/uniuri                         | 39 months ago (2016/02/12) |  false   |\n| github.com/golang/glog                           | 39 months ago (2016/01/26) |   true   |\n| github.com/gorilla/context                       | 32 months ago (2016/08/17) |  false   |\n| github.com/gorilla/handlers                      | 9 months ago (2018/07/27)  |  false   |\n| github.com/kelseyhightower/envconfig             | 27 months ago (2017/01/24) |  false   |\n| github.com/kisielk/gotool                        | 14 months ago (2018/02/21) |   true   |\n| github.com/matttproud/golang_protobuf_extensions | 36 months ago (2016/04/24) |   true   |\n| github.com/pmezard/go-difflib                    | 40 months ago (2016/01/10) |  false   |\n| github.com/rainycape/unidecode                   | 44 months ago (2015/09/07) |  false   |\n| github.com/satori/go.uuid                        | 16 months ago (2018/01/03) |  false   |\n| github.com/sendgrid/rest                         | 12 months ago (2018/04/09) |  false   |\n| github.com/sendgrid/sendgrid-go                  | 22 months ago (2017/07/04) |  false   |\n+--------------------------------------------------+----------------------------+----------+\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnivl%2Fcheck-go-deps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnivl%2Fcheck-go-deps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnivl%2Fcheck-go-deps/lists"}