Skip to content

action-runner/dependencies-outdater

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Dependencies outdater

codecov

A Automated Dependencies checking tool to check your dependencies and will create a pull request based on that.

Sample action

outdated:
runs-on: ubuntu-latest
name: Check Dependencies
steps:
    - uses: actions/checkout@v2
      with:
        fetch-depth: 0
    - name: Use Node.js 16
      uses: actions/setup-node@v2
      with:
        node-version: 16
        cache: 'yarn'
    - run: yarn
    - run: yarn build
    - name: check dependencies
      uses: action-runner/depedencies_outdater
      with:
        access_token: ${{ secrets.GITHUB_TOKEN }}

Pull request mode

On each pull request, this action will check yoour package.json file for updates. If any, it will create a comment on your pull reequest indicates the updates it found. Whenever you update your package json to the latest version, it will delete that comment.

截屏2022-02-21 下午6 19 57

Schedule mode

On each schedule mode, it will create a pull request whenever it found any update.

Releases

No releases published

Packages

No packages published