A GitHub action for reporting differences in dependencies between two branches or commits.
This action compares dependencies between your base branch and current branch, analyzing potential security and maintenance concerns:
- 🔒 Package trust levels - Detects decreases in package trust levels (provenance and trusted publisher status)
- 📈 Dependency growth - Warns when dependency count increases significantly
- 📦 Install size - Warns when package size increases significantly
- 🔄 Duplicate versions - Detects packages with multiple versions installed
⚠️ Module replacements - Identifies new packages that have community-recommended alternatives
name: Dependency Diff
on:
pull_request:
jobs:
diff_dependencies:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create Diff
uses: e18e/action-dependency-diff@v1
Name | Description | Required | Default |
---|---|---|---|
base-ref |
Base ref to compare against (defaults to main or PR target) | No | Auto-detected from PR or main |
github-token |
The GitHub token for authentication | Yes | ${{ github.token }} |
pr-number |
The number of the pull request to comment on | Yes | ${{ github.event.pull_request.number }} |
dependency-threshold |
Threshold for warning about significant increase in number of dependencies | No | 10 |
size-threshold |
Threshold (in bytes) for warning about significant increase in package size | No | 100000 |
duplicate-threshold |
Threshold for warning about packages with multiple versions | No | 1 |
base-packages |
Glob pattern for base branch pack files (e.g., "./base-packs/*.tgz" ) |
No | None |
source-packages |
Glob pattern for source branch pack files (e.g., "./source-packs/*.tgz" ) |
No | None |
pack-size-threshold |
Threshold (in bytes) for warning about significant increase in total pack size | No | 50000 |
detect-replacements |
Detect modules which have community suggested alternatives | No | true |
- name: Create Diff
uses: e18e/action-dependency-diff@v1
with:
base-ref: 'develop'
dependency-threshold: '5'
size-threshold: '50000'
See the recipes/
directory for complete workflow examples:
basic.yml
- Basic dependency diff on pull requestsbundle-diff.yml
- Advanced workflow with package bundle size analysis
In addition to analyzing dependency changes, this action can optionally compare the actual bundle sizes of your packages by examining npm pack
outputs. This provides insights into the bundle size (what gets published) rather than just the install size (what gets installed with dependencies).
The action accepts glob patterns to locate package tarballs for comparison:
base-packages
- Glob pattern for base branch pack files (e.g.,"./base-packs/*.tgz"
)source-packages
- Glob pattern for source branch pack files (e.g.,"./source-packs/*.tgz"
)pack-size-threshold
- Threshold in bytes for warning about significant pack size increases
Note
Package bundle analysis only runs when both base-packages
and source-packages
are provided. If these inputs are not set, this feature is skipped entirely.
You can see an example of how to set this up in the bundle difference workflow.
This action automatically scans for new dependencies that have community-recommended replacements or alternatives.
The recommendations come from the e18e community and include manifests for:
- Native alternatives
- Micro-utility alternatives
- Generally preferred packages
Note
Module replacement suggestions are advisory and may not always be straightforward migrations. Review each recommendation carefully and use exclusion features if needed.
- npm (package-lock.json)
- Yarn (yarn.lock)
- pnpm (pnpm-lock.yaml)
- bun (bun.lock)
The action requires the following permissions:
permissions:
pull-requests: write # To comment on pull requests
The following levels are considered when evaluating package trust:
- Trusted Publisher (with provenance) (highest)
- Provenance
- None
When a package's trust level decreases (e.g., from Trusted Publisher to Provenance), it is flagged in the report.
If you want more information on why the trust level changed, or want to detect changes to the provenance information, we highly recommend using the provenance-action in addition to this.
The provenance action will tell you exactly what changed in the provenance information. For example, if the repository changed between two versions.
MIT