Skip to content

Commit f1d698f

Browse files
authored
Merge branch 'mathieudutour:master' into 208-conventionalcommits-preset
2 parents e520063 + f36074f commit f1d698f

File tree

6 files changed

+421
-256
lines changed

6 files changed

+421
-256
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version-file: package.json
1316
- run: npm ci
1417
- run: npm run test
1518
- run: npm run check

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Bump version and push tag
1919
id: tag_version
20-
uses: mathieudutour/github-tag-action@v6.1
20+
uses: mathieudutour/github-tag-action@v6.2
2121
with:
2222
github_token: ${{ secrets.GITHUB_TOKEN }}
2323
- name: Create a GitHub release

action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ outputs:
88
description: "Generated tag without the prefix"
99
previous_tag:
1010
description: "Previous tag (or `0.0.0`)"
11+
previous_version:
12+
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."
1113
release_type:
1214
description: "The computed release type (`major`, `minor`, `patch` or `custom` - can be prefixed with `pre`)"
1315
changelog:
@@ -61,7 +63,7 @@ inputs:
6163
default: "false"
6264

6365
runs:
64-
using: "node16"
66+
using: "node20"
6567
main: "lib/main.js"
6668
branding:
6769
icon: "git-merge"

0 commit comments

Comments
 (0)