diff --git a/.github/workflows/tag-and-release.yml b/.github/workflows/tag-and-release.yml index 5822ebce..9c037d70 100644 --- a/.github/workflows/tag-and-release.yml +++ b/.github/workflows/tag-and-release.yml @@ -20,7 +20,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v2 with: - node-version: 14.x + node-version: 16.x - name: set git user run: | git config --global user.name "${{ github.actor }}" diff --git a/action.yml b/action.yml index 50598ecd..5163bf19 100644 --- a/action.yml +++ b/action.yml @@ -3,7 +3,7 @@ name: 'Bump' description: 'Bump the manifest and generate changelogs' inputs: bump-to: - description: 'semver version to bump to' + description: 'the semver version to bump to ("semver" to bump based on commits)' required: true package: description: 'in a monorepo, package that contains the files to be bumped ie. app-opine -> packages/app-opine' @@ -21,7 +21,7 @@ outputs: version: description: 'The semver version bumped to' tag: - description: 'The git tag created' + description: 'The git tag created, if created. undefined if not created.' runs: using: 'node16' main: 'index.js'