Simple tool to check deno.json, deno.jsonc, jsr.json or jsr.jsonc for
outdated dependencies.
Currently supports dependencies hosted at jsr, npm or deno.land/x.
deno run -A jsr:@check/deps [options]Important
Replace -A (all permissions) with
--allow-read=. --allow-net=jsr.io,registry.npmjs.org to make full use of
Deno's security model:
deno run --allow-read=. --allow-net=jsr.io,registry.npmjs.org jsr:@check/depsTip
This will cache the current version locally on subsequent runs. Append
the refresh-flag -r to update to the latest version of @check/deps:
deno run -rA jsr:@check/deps [options]Tip
You can install check/deps as a command, below using minimum
permissions and the cli name check-deps
deno install --global -n check-deps -r --allow-read=. --allow-net=jsr.io,registry.npmjs.org jsr:@check/deps jsr:@check/depsNow you can run check-deps directly at the command line.
--help: Display usage instructions.--target <dir>: Set the target project path (defaults to current directory).--slim: Suppress table output for streamlined integration.--allow-unused: Don't report on unused packages.--pre-release: Treat latest (accoring to semver) pre-release as the wanted version.
➜ deno run -A jsr:@check/deps
Package Current Wanted Latest
jsr:@cross/deepmerge@~1.0.0 1.0.0 1.0.0 1.0.0 Up-to-date
jsr:@cross/env@~1.0.2 1.0.2 1.0.2 1.0.2 Up-to-date
jsr:@cross/fs@~0.1.11 0.1.11 0.1.11 0.1.11 Up-to-date
jsr:@std/assert@~1.0.0 1.0.8 1.0.8 1.0.8 Up-to-date
jsr:@std/io@~0.224.0 0.224.9 0.224.9 0.225.0 Outdated Lock
jsr:@std/path@~1.0.1 1.0.8 1.0.8 1.0.8 Up-to-date
npm:zod@~3.23.6 3.23.8 3.23.8 3.23.8 Up-to-date
Updates available.
To check your dependencies with a Deno Task, such as deno task check-deps,
modify your deno.json as outlined below:
"tasks": {
"check-deps": "deno run -A jsr:@check/deps"
}To check JSR dependencies automatically using a GitHub action, add one of the following steps to your existing Deno workflow:
Check and display a warning if dependencies are out of date, but let the workflow complete successfully.
- name: Check Dependencies
continue-on-error: true
run: deno run -A jsr:@check/deps || echo "::warning title=Dependency Check::Some of the dependencies are out of date, please check."Check and make the workflow fail if dependencies are out of date.
- name: Check Dependencies
run: deno run -A jsr:@check/depsFull example, failing on oudated dependencies:
name: Deno CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Run linter
run: deno lint
- name: Check Dependencies
run: deno run -A jsr:@check/deps