Skip to content

Commit d4f9064

Browse files
committed
v4
1 parent b50b1a4 commit d4f9064

File tree

6 files changed

+86
-238
lines changed

6 files changed

+86
-238
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v5
2323
- uses: actions/setup-node@v5
2424
with:
25-
node-version: 20.x
25+
node-version-file: package.json
2626
cache: npm
2727
- run: npm ci
2828
- run: npm run build

.github/workflows/update-major-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
type: choice
1212
description: The major version tag to update
1313
options:
14-
- v3
14+
- v4
1515

1616
jobs:
1717
tag:

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The SHA defaults to `github.sha` OR, for `pull_request` events `github.event.pul
1414

1515
```yml
1616
- name: Create commit comment
17-
uses: peter-evans/commit-comment@v3
17+
uses: peter-evans/commit-comment@v4
1818
with:
1919
body: |
2020
This is a multi-line test comment
@@ -29,7 +29,7 @@ The SHA defaults to `github.sha` OR, for `pull_request` events `github.event.pul
2929
3030
```yml
3131
- name: Update commit comment
32-
uses: peter-evans/commit-comment@v3
32+
uses: peter-evans/commit-comment@v4
3333
with:
3434
comment-id: 557858210
3535
body: |
@@ -41,7 +41,7 @@ The SHA defaults to `github.sha` OR, for `pull_request` events `github.event.pul
4141
4242
```yml
4343
- name: Add reactions
44-
uses: peter-evans/commit-comment@v3
44+
uses: peter-evans/commit-comment@v4
4545
with:
4646
comment-id: 557858210
4747
reactions: |
@@ -78,7 +78,7 @@ Note that in order to read the step output the action step must have an id.
7878

7979
```yml
8080
- name: Create commit comment
81-
uses: peter-evans/commit-comment@v3
81+
uses: peter-evans/commit-comment@v4
8282
id: cc
8383
with:
8484
body: |
@@ -92,7 +92,7 @@ Note that in order to read the step output the action step must have an id.
9292

9393
```yml
9494
- name: Create commit comment
95-
uses: peter-evans/commit-comment@v3
95+
uses: peter-evans/commit-comment@v4
9696
with:
9797
body-path: 'comment-body.md'
9898
```
@@ -117,7 +117,7 @@ The template is rendered using the [render-template](https://github.com/chuhlomi
117117
bar: that
118118
119119
- name: Create commit comment
120-
uses: peter-evans/commit-comment@v3
120+
uses: peter-evans/commit-comment@v4
121121
with:
122122
body: ${{ steps.template.outputs.result }}
123123
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ outputs:
3434
comment-id:
3535
description: 'The id of the created commit comment'
3636
runs:
37-
using: 'node20'
37+
using: 'node24'
3838
main: 'dist/index.js'
3939
branding:
4040
icon: 'message-square'

0 commit comments

Comments
 (0)