vibecoded lightweight local alternative to renovate dependency updater
  • Go 99.7%
  • Makefile 0.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Nicolas Karolak 9f668c4d40
feat(go): Run go mod tidy after updating dependencies
After bumping versions with 'go get', run 'go mod tidy' to keep
go.sum in sync and clean up any stale require blocks or indirect
dependencies that shifted during the update.
2026-08-28 21:36:46 +02:00
cmd/depup feat: remove GitHub Actions ecosystem 2026-08-14 22:31:24 +02:00
docs docs(ecosystems): sync with current project state 2026-08-25 23:29:51 +02:00
e2e feat: remove GitHub Actions ecosystem 2026-08-14 22:31:24 +02:00
internal feat(go): Run go mod tidy after updating dependencies 2026-08-28 21:36:46 +02:00
.editorconfig ci: use prek for linting 2026-08-08 15:08:37 +02:00
.gitignore chore: rename project from depgot to depup 2026-08-08 16:14:08 +02:00
.semrel.yaml ci(release): add semrel config 2026-08-10 18:59:18 +02:00
AGENTS.md feat: remove GitHub Actions ecosystem 2026-08-14 22:31:24 +02:00
go.mod build: update module path to match repository URL 2026-08-09 12:26:55 +02:00
go.sum feat: init 2026-08-08 14:41:54 +02:00
LICENSE chore: add Unlicense 2026-08-08 16:26:40 +02:00
Makefile feat(terraform): add Terraform/OpenTofu ecosystem support 2026-08-09 17:50:08 +02:00
prek.toml ci(prek): bump golangci-lint to v2.13.1 2026-08-25 21:59:06 +02:00
README.md docs(readme): add go install instructions and update clone URL 2026-08-09 12:29:08 +02:00

depup

Note

This project was AI-generated with Kimi-K2.6 hosted by Infomaniak. This is a personal project built to solve my own workflow needs. It is provided as-is; contributions are welcome but support is not guaranteed.

A lightweight, local dependency updater following the UNIX philosophy.

No branches, no pull requests — just scan, compare, and update in place.

Installation

With Go 1.20+:

go install git.sr.ht/~nka/depup/cmd/depup@latest

Or clone and build:

git clone https://git.sr.ht/~nka/depup depup
cd depup
make install

Usage

# scan and update all detected ecosystems
depup

# dry-run to preview changes
depup --dry-run

# target specific ecosystems
depup --only go,npm

# show help
depup --help

Review changes with git diff, then commit.