Skip to content

Commit

Permalink
Merge branch 'mathieudutour:master' into 208-conventionalcommits-preset
Browse files Browse the repository at this point in the history
  • Loading branch information
andylolz authored Mar 19, 2024
2 parents e520063 + f36074f commit f1d698f
Show file tree
Hide file tree
Showing 6 changed files with 421 additions and 256 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
- run: npm ci
- run: npm run test
- run: npm run check
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.1
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create a GitHub release
Expand Down
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ outputs:
description: "Generated tag without the prefix"
previous_tag:
description: "Previous tag (or `0.0.0`)"
previous_version:
description: "The value of the previous tag (or 0.0.0 if none) without the prefix. Note that if custom_tag is set, this will be undefined."
release_type:
description: "The computed release type (`major`, `minor`, `patch` or `custom` - can be prefixed with `pre`)"
changelog:
Expand Down Expand Up @@ -61,7 +63,7 @@ inputs:
default: "false"

runs:
using: "node16"
using: "node20"
main: "lib/main.js"
branding:
icon: "git-merge"
Expand Down
Loading

0 comments on commit f1d698f

Please sign in to comment.