File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 33* Unreleased
44** Added
55 - aliases: `update/dependency-versions` automatically updates everything to new versions
6+ - dev: `dependencies-update` & `dependencies-outdated` make tasks
67
78* 2025-07-01
89** Updated
Original file line number Diff line number Diff line change @@ -173,6 +173,14 @@ lint-clean: ## Clean MegaLinter report information
173173megalinter-upgrade : # # Upgrade MegaLinter config to latest version
174174 $(info --------- MegaLinter Upgrade Config ---------)
175175 npx mega-linter-runner@latest --upgrade
176+
177+ dependencies-outdated : # # Report new versions of library dependencies and GitHub action
178+ $(info -- Search for outdated libraries ---------)
179+ - clojure -T:search/outdated > $(OUTDATED_FILE )
180+
181+ dependencies-update : # # Update all library dependencies and GitHub action
182+ $(info -- Search for outdated libraries ---------)
183+ - clojure -T:update/dependency-versions > $(OUTDATED_FILE )
176184# ------------------------------------ #
177185
178186# ------- Version Control ------------ #
You can’t perform that action at this time.
0 commit comments