Skip to content

Commit 62b45ff

Browse files
authored
Upgrading to Node 16.
1 parent 78be9a2 commit 62b45ff

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
# Sequence of patterns matched against refs/tags
55
tags:
6-
- 'v*' # Push events to matching v*, i.e. v1.0, v3.0.0
6+
- 'v*' # Push events to matching v*, i.e. v1.0, v4.0.0
77

88
jobs:
99
release:
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v3
1515
- name: Generate changelog
1616
id: changelog
17-
uses: metcalfc/changelog-generator@v3.0.0
17+
uses: metcalfc/changelog-generator@v4.0.0
1818
with:
1919
myToken: ${{ secrets.GITHUB_TOKEN }}
2020
- name: Create Release

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This Action returns a markdown formatted changelog between two git references. T
66

77
I just wanted a simple way to populate the body of a GitHub Release.
88

9-
<a href="https://github.com/metcalfc/changelog-generator/releases/tag/v3.0.0"><img alt="Example Release Notes" src="./release-notes.png" width="400"></a>
9+
<a href="https://github.com/metcalfc/changelog-generator/releases/tag/v4.0.0"><img alt="Example Release Notes" src="./release-notes.png" width="400"></a>
1010

1111
## Inputs
1212

@@ -41,7 +41,7 @@ First you will need to generate the changelog itself. To get the changelog betwe
4141
```yaml
4242
- name: Generate changelog
4343
id: changelog
44-
uses: metcalfc/changelog-generator@v3.0.0
44+
uses: metcalfc/changelog-generator@v4.0.0
4545
with:
4646
myToken: ${{ secrets.GITHUB_TOKEN }}
4747
```
@@ -51,7 +51,7 @@ Or, if you have two specific references you want:
5151
```yaml
5252
- name: Generate changelog
5353
id: changelog
54-
uses: metcalfc/changelog-generator@v3.0.0
54+
uses: metcalfc/changelog-generator@v4.0.0
5555
with:
5656
myToken: ${{ secrets.GITHUB_TOKEN }}
5757
head-ref: 'v0.0.2'

SECURITY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7-
| v3.0.0 | :white_check_mark: |
8-
| < v3.0.0 | :x: |
7+
| v4.0.0 | :white_check_mark: |
8+
| < v4.0.0 | :x: |
99

1010
## Reporting a Vulnerability
1111

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "changelog-generator",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"description": "A GitHub Action that compares the commit differences between two branches",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)