Skip to content

Commit

Permalink
Cleaning up some minor dep bumps.
Browse files Browse the repository at this point in the history
  • Loading branch information
metcalfc committed Oct 27, 2022
1 parent 7f6db29 commit 31b6d6f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -3,7 +3,7 @@ on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v4.0.0
- 'v*' # Push events to matching v*, i.e. v1.0, v4.0.1

jobs:
release:
Expand All @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3
- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@v4.0.0
uses: metcalfc/changelog-generator@v4.0.1
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -6,7 +6,7 @@ This Action returns a markdown formatted changelog between two git references. T

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

<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>
<a href="https://github.com/metcalfc/changelog-generator/releases/tag/v4.0.1"><img alt="Example Release Notes" src="./release-notes.png" width="400"></a>

## Inputs

Expand Down Expand Up @@ -41,7 +41,7 @@ First you will need to generate the changelog itself. To get the changelog betwe
```yaml
- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@v4.0.0
uses: metcalfc/changelog-generator@v4.0.1
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
```
Expand All @@ -51,7 +51,7 @@ Or, if you have two specific references you want:
```yaml
- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@v4.0.0
uses: metcalfc/changelog-generator@v4.0.1
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
head-ref: 'v0.0.2'
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------- | ------------------ |
| v4.0.0 | :white_check_mark: |
| < v4.0.0 | :x: |
| v4.0.1 | :white_check_mark: |
| < v4.0.1 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "changelog-generator",
"version": "4.0.0",
"version": "4.0.1",
"description": "A GitHub Action that compares the commit differences between two branches",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit 31b6d6f

Please sign in to comment.