Skip to content

Releases: neverendingqs/gh-action-node-update-deps

Labelling the pull request

26 Aug 23:59
Compare
Choose a tag to compare

This action now labels the pull request (dependencies by default).

Now supports running a pre-commit script.

24 Aug 00:05
f8da6e1
Compare
Choose a tag to compare

Pre-commit script input details:

  pre-commit-script:
    description: A command to run before committing the dependency changes (e.g. npm run build)

Example usage:

name: Scheduled dependencies update
on:
  schedule:
    - cron:  '0 15 * * 2'
  workflow_dispatch:
jobs:
  update-deps:
    name: Update Node dependencies
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: neverendingqs/gh-action-node-update-deps@master
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          bump-version: patch
          package-manager: yarn
          pre-commit-script: npm run build

Using renamed base image and updating readme

22 Aug 01:59
Compare
Choose a tag to compare
v1.5.0

readme: update version to master.

Link to workflow run

22 Aug 01:48
52770a7
Compare
Choose a tag to compare

Resulting pull request now links back to workflow run that generated the pull request.

Pre-built image.

16 Aug 18:32
249f8bc
Compare
Choose a tag to compare

Now uses pre-built image to reduce runtime.

Fixing scenarios where npm audit fixes something that was updated

10 Jul 02:52
e2d6013
Compare
Choose a tag to compare

There are certain scenarios where npm-check-updates modifies a dependency that npm audit fix wants to change as well. This is resolved by updating the package lock file first before running npm audit fix.

Adding npm audit call

10 Jul 02:38
2acd086
Compare
Choose a tag to compare

If using npm, it now runs npm audit fix as well.

Add more examples in README

21 Jun 03:05
Compare
Choose a tag to compare

Added an example of the bump-version input.

Version Bump Support

21 Jun 03:00
Compare
Choose a tag to compare

Added support for bumping the package version at the same time. Can be paired with publish-me-maybe to automatically deploy package with updated dependencies on merge.

Initial Release

21 Jun 02:38
Compare
Choose a tag to compare

First release of this action.