From 31b6d6f9e6e17e84ad34bee780f82d8ee79f6842 Mon Sep 17 00:00:00 2001 From: Chad Metcalf Date: Thu, 27 Oct 2022 04:25:06 +0000 Subject: [PATCH] Cleaning up some minor dep bumps. --- .github/workflows/release.yml | 4 ++-- README.md | 6 +++--- SECURITY.md | 4 ++-- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6249b9c..ee47a07 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: @@ -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 diff --git a/README.md b/README.md index ea96cfc..dbe3a25 100644 --- a/README.md +++ b/README.md @@ -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. -Example Release Notes +Example Release Notes ## Inputs @@ -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 }} ``` @@ -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' diff --git a/SECURITY.md b/SECURITY.md index e033a7c..0703092 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -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 diff --git a/package-lock.json b/package-lock.json index bf709a1..c8e0a14 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "changelog-generator", - "version": "4.0.0", + "version": "4.0.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 2978780..258f947 100644 --- a/package.json +++ b/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": {