diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
deleted file mode 100644
index 5073ce3..0000000
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ /dev/null
@@ -1,97 +0,0 @@
-name: 🐞 Bug
-description: Create a report to help us improve
-title: "[BUG]
"
-labels: [bug, needs triage]
-
-body:
- - type: markdown
- attributes:
- value: |
- Thanks for taking the time to fill out this bug report!
- - type: checkboxes
- attributes:
- label: Is there an existing issue for this?
- description: Please search to see if an issue already exists for the bug you encountered.
- options:
- - label: I have searched the existing issues
- required: true
- - type: checkboxes
- attributes:
- label: Does this issue exist in the latest version?
- description: Please view all releases to confirm that this issue hasn't already been fixed.
- options:
- - label: I'm using the latest release
- required: true
- - type: textarea
- id: what-happened
- attributes:
- label: Describe the bug?
- description: A clear and concise description of what the bug is
- placeholder: Tell us what you see!
- validations:
- required: true
- - type: textarea
- id: reproduce
- attributes:
- label: To Reproduce
- description: Steps to reproduce the behavior?
- placeholder: |
- 1. In this environment...
- 2. With this config...
- 3. Run '...'
- 4. See error...
- validations:
- required: true
- - type: dropdown
- id: os
- attributes:
- label: What OS are you seeing the problem on?
- multiple: true
- options:
- - all
- - ubuntu-latest or ubuntu-20.04
- - ubuntu-18.04
- - macos-latest or macos-10.15
- - macos-11
- - windows-latest or windows-2019
- - windows-2016
- validations:
- required: true
- - type: textarea
- id: expected
- attributes:
- label: Expected behavior?
- description: A clear and concise description of what you expected to happen.
- placeholder: Tell us what you expected!
- validations:
- required: true
- - type: textarea
- id: logs
- attributes:
- label: Relevant log output
- description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
- placeholder: |
- This can be achieved by:
- 1. Re-running the workflow with debug logging enabled.
- 2. Copy or download the log archive.
- 3. Paste the contents here or upload the file in a subsequent comment.
- render: shell
- - type: textarea
- attributes:
- label: Anything else?
- description: |
- Links? or References?
-
- Anything that will give us more context about the issue you are encountering!
-
- Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
- validations:
- required: false
- - type: checkboxes
- id: terms
- attributes:
- label: Code of Conduct
- description: By submitting this issue, you agree to follow our [Code of Conduct](../blob/main/CODE_OF_CONDUCT.md)
- options:
- - label: I agree to follow this project's Code of Conduct
- required: true
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml
deleted file mode 100644
index 9f930cc..0000000
--- a/.github/ISSUE_TEMPLATE/feature_request.yaml
+++ /dev/null
@@ -1,59 +0,0 @@
-name: Feature request
-description: Suggest an idea for this project
-title: "[Feature] "
-labels: [enhancement]
-
-body:
- - type: markdown
- attributes:
- value: |
- Thanks for taking the time to fill out this feature request!
- - type: checkboxes
- attributes:
- label: Is this feature missing in the latest version?
- description: Please upgrade to the latest version to verify that this feature is still missing.
- options:
- - label: I'm using the latest release
- required: true
- - type: textarea
- id: what-happened
- attributes:
- label: Is your feature request related to a problem? Please describe.
- description: |
- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
- placeholder: Tell us what you see!
- validations:
- required: true
- - type: textarea
- id: requests
- attributes:
- label: Describe the solution you'd like?
- description: A clear and concise description of what you want to happen.
- validations:
- required: true
- - type: textarea
- id: alternative
- attributes:
- label: Describe alternatives you've considered?
- description: A clear and concise description of any alternative solutions or features you've considered.
- validations:
- required: false
- - type: textarea
- attributes:
- label: Anything else?
- description: |
- Links? or References?
-
- Add any other context or screenshots about the feature request here.
-
- Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
- validations:
- required: false
- - type: checkboxes
- id: terms
- attributes:
- label: Code of Conduct
- description: By submitting this issue, you agree to follow our [Code of Conduct](../blob/main/CODE_OF_CONDUCT.md)
- options:
- - label: I agree to follow this project's Code of Conduct
- required: true
diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml
deleted file mode 100644
index 0de2e3d..0000000
--- a/.github/workflows/auto-approve.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: Auto approve
-
-on:
- pull_request_target
-
-jobs:
- auto-approve:
- runs-on: ubuntu-latest
- steps:
- - uses: hmarr/auto-approve-action@v3
- if: |
- (
- github.event.pull_request.user.login == 'dependabot[bot]' ||
- github.event.pull_request.user.login == 'dependabot' ||
- github.event.pull_request.user.login == 'dependabot-preview[bot]' ||
- github.event.pull_request.user.login == 'dependabot-preview' ||
- github.event.pull_request.user.login == 'renovate[bot]' ||
- github.event.pull_request.user.login == 'renovate' ||
- github.event.pull_request.user.login == 'github-actions[bot]'
- )
- &&
- (
- github.actor == 'dependabot[bot]' ||
- github.actor == 'dependabot' ||
- github.actor == 'dependabot-preview[bot]' ||
- github.actor == 'dependabot-preview' ||
- github.actor == 'renovate[bot]' ||
- github.actor == 'renovate' ||
- github.actor == 'github-actions[bot]'
- )
- with:
- github-token: ${{ secrets.PAT_TOKEN }}
diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml
deleted file mode 100644
index 43086ff..0000000
--- a/.github/workflows/auto-merge.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: automerge
-on:
- check_suite:
- types:
- - completed
-
-jobs:
- automerge:
- runs-on: ubuntu-latest
- if: |
- github.actor == 'dependabot[bot]' ||
- github.actor == 'dependabot' ||
- github.actor == 'dependabot-preview[bot]' ||
- github.actor == 'dependabot-preview' ||
- github.actor == 'renovate[bot]' ||
- github.actor == 'renovate'
- steps:
- - name: automerge
- uses: pascalgn/automerge-action@v0.15.5
- env:
- GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
- MERGE_METHOD: "rebase"
- UPDATE_METHOD: "rebase"
- MERGE_RETRIES: "6"
- MERGE_RETRY_SLEEP: "100000"
- MERGE_LABELS: ""
\ No newline at end of file
diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml
index e315344..3eb3f7e 100644
--- a/.github/workflows/codacy-analysis.yml
+++ b/.github/workflows/codacy-analysis.yml
@@ -8,6 +8,9 @@
name: Codacy Security Scan
+permissions:
+ contents: read
+
on:
push:
branches: [ main ]
@@ -29,12 +32,12 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
continue-on-error: true
- uses: codacy/codacy-analysis-cli-action@v4.2.0
+ uses: codacy/codacy-analysis-cli-action@v4.4.0
with:
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
# You can also omit the token and run the tools that support default configurations
@@ -51,6 +54,6 @@ jobs:
# Upload the SARIF file generated in the previous step
- name: Upload SARIF results file
continue-on-error: true
- uses: github/codeql-action/upload-sarif@v2
+ uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif
diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml
deleted file mode 100644
index d3ebb71..0000000
--- a/.github/workflows/greetings.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-name: Greetings
-
-on: [pull_request_target, issues]
-
-jobs:
- greeting:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/first-interaction@v1
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- issue-message: "Thanks for reporting this issue, don't forget to star this project if you haven't already to help us reach a wider audience."
- pr-message: "Thanks for implementing a fix, could you ensure that the test covers your changes if applicable."
diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml
index 0c601fd..47b9198 100644
--- a/.github/workflows/rebase.yml
+++ b/.github/workflows/rebase.yml
@@ -8,7 +8,7 @@ jobs:
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
token: ${{ secrets.PAT_TOKEN }}
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
diff --git a/.github/workflows/sync-release-version.yml b/.github/workflows/sync-release-version.yml
index 187336f..f517042 100644
--- a/.github/workflows/sync-release-version.yml
+++ b/.github/workflows/sync-release-version.yml
@@ -8,11 +8,11 @@ jobs:
update-version:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run release-tagger
- uses: tj-actions/release-tagger@v2
+ uses: tj-actions/release-tagger@v4
- name: Sync release version.
uses: tj-actions/sync-release-version@v13
id: sync-release-version
@@ -21,12 +21,10 @@ jobs:
only_major: true
paths: |
README.md
- - name: Generate CHANGELOG
- uses: tj-actions/github-changelog-generator@v1.17
- with:
- output: 'HISTORY.md'
+ - name: Run git-cliff
+ uses: tj-actions/git-cliff@v1
- name: Create Pull Request
- uses: peter-evans/create-pull-request@v4.2.3
+ uses: peter-evans/create-pull-request@v6.0.1
with:
base: "main"
labels: "merge when passing"
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index c27a616..8d2ddcc 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,5 +1,8 @@
name: CI
+permissions:
+ contents: read
+
on:
release:
types:
@@ -19,7 +22,7 @@ jobs:
name: Test semver-diff
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: shellcheck
uses: reviewdog/action-shellcheck@v1
- name: Run semver-diff
diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml
index 4996ba3..840d649 100644
--- a/.github/workflows/update-readme.yml
+++ b/.github/workflows/update-readme.yml
@@ -9,18 +9,18 @@ jobs:
sync-assets:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3.3.0
+ - uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: Run auto-doc
- uses: tj-actions/auto-doc@v1.7.3
+ uses: tj-actions/auto-doc@v3.4.1
- name: Run test
uses: tj-actions/remark@v3
- name: Verify Changed files
- uses: tj-actions/verify-changed-files@v13
+ uses: tj-actions/verify-changed-files@v19
id: verify_changed_files
with:
files: |
@@ -34,7 +34,7 @@ jobs:
- name: Create Pull Request
if: failure()
- uses: peter-evans/create-pull-request@v4.2.3
+ uses: peter-evans/create-pull-request@v6.0.1
with:
base: "main"
labels: "merge when passing"
diff --git a/HISTORY.md b/HISTORY.md
index 91c6369..2358f4e 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,172 +1,622 @@
# Changelog
-## [v2.4.0](https://github.com/tj-actions/semver-diff/tree/v2.4.0) (2023-01-10)
+# [3.0.0](https://github.com/tj-actions/semver-diff/compare/v2.4.1...v3.0.0) - (2024-03-01)
+
+## 📦 Bumps
+
+- Bump tj-actions/auto-doc from 2.2.4 to 2.2.5
+
+Bumps [tj-actions/auto-doc](https://github.com/tj-actions/auto-doc) from 2.2.4 to 2.2.5.
+- [Release notes](https://github.com/tj-actions/auto-doc/releases)
+- [Changelog](https://github.com/tj-actions/auto-doc/blob/main/HISTORY.md)
+- [Commits](https://github.com/tj-actions/auto-doc/compare/v2.2.4...v2.2.5)
+
+---
+updated-dependencies:
+- dependency-name: tj-actions/auto-doc
+ dependency-type: direct:production
+ update-type: version-update:semver-patch
+...
+
+Signed-off-by: dependabot[bot] ([9c3ffa9](https://github.com/tj-actions/semver-diff/commit/9c3ffa950c662b5ed12d01248488e7910e920923)) - (dependabot[bot])
+- Bump tj-actions/auto-doc from 2.0.0 to 2.0.3
+
+Bumps [tj-actions/auto-doc](https://github.com/tj-actions/auto-doc) from 2.0.0 to 2.0.3.
+- [Release notes](https://github.com/tj-actions/auto-doc/releases)
+- [Changelog](https://github.com/tj-actions/auto-doc/blob/main/HISTORY.md)
+- [Commits](https://github.com/tj-actions/auto-doc/compare/v2.0.0...v2.0.3)
+
+---
+updated-dependencies:
+- dependency-name: tj-actions/auto-doc
+ dependency-type: direct:production
+ update-type: version-update:semver-patch
+...
+
+Signed-off-by: dependabot[bot] ([d550b6b](https://github.com/tj-actions/semver-diff/commit/d550b6b31231e5ab586f164415ae3c259fadf64a)) - (dependabot[bot])
+
+## ➕ Add
+
+- Added .github/FUNDING.yml ([3eb012f](https://github.com/tj-actions/semver-diff/commit/3eb012fe49cdbe4c507e47135e9748c2d43c6e53)) - (Tonye Jack)
+
+## ➖ Remove
+
+- Deleted .github/workflows/auto-approve.yml ([d4c2d51](https://github.com/tj-actions/semver-diff/commit/d4c2d51c87183db93d50a79fe5aaf743e5c2392f)) - (Tonye Jack)
+- Deleted .github/workflows/greetings.yml ([ce5c949](https://github.com/tj-actions/semver-diff/commit/ce5c949b82c9425b3dc22fa0d71fea21651d94d4)) - (Tonye Jack)
+- Deleted .github/ISSUE_TEMPLATE/feature_request.yaml ([aa94efa](https://github.com/tj-actions/semver-diff/commit/aa94efa395bd8a9ec6c746d663f19f375461dd9d)) - (Tonye Jack)
+- Deleted .github/ISSUE_TEMPLATE/bug_report.yaml ([cc34345](https://github.com/tj-actions/semver-diff/commit/cc3434527af5ca5ffcc594f0eb2319dfc27618a2)) - (Tonye Jack)
+- Deleted .github/FUNDING.yml ([e3d6b7b](https://github.com/tj-actions/semver-diff/commit/e3d6b7b527a819e62e226cf60f47611f32cdd79a)) - (Tonye Jack)
+- Deleted .github/workflows/auto-merge.yml ([4eb5a19](https://github.com/tj-actions/semver-diff/commit/4eb5a195b789fce6acb8a223962bde73e5ab33df)) - (Tonye Jack)
+
+## 🔄 Update
+
+- Updated README.md
+ ([acf53be](https://github.com/tj-actions/semver-diff/commit/acf53be8190bf8d9a2a18b0d371488d65eda9310)) - (jackton1)
+- Updated .github/FUNDING.yml ([c9c6213](https://github.com/tj-actions/semver-diff/commit/c9c62137f33b0081544da44571f050ba8fdae46e)) - (Tonye Jack)
+- Updated renovate.json ([cd46a48](https://github.com/tj-actions/semver-diff/commit/cd46a4820811e2c0b1bea9b1632ff62fe61db7bf)) - (Tonye Jack)
+- Updated README.md
+ ([02dd736](https://github.com/tj-actions/semver-diff/commit/02dd736a65b11d1d1166978a958443fba3f352e1)) - (jackton1)
+- Update sync-release-version.yml ([5a58567](https://github.com/tj-actions/semver-diff/commit/5a585675750951bad4fb0e12547e2742c56b42d5)) - (Tonye Jack)
+- Updated README.md
+ ([389a9dc](https://github.com/tj-actions/semver-diff/commit/389a9dc6f88ced42de267f6e6644df8e13977cee)) - (jackton1)
+- Update README.md ([bcb3592](https://github.com/tj-actions/semver-diff/commit/bcb35922a1a0d538db1bf5f12f074cd7f7252a82)) - (Tonye Jack)
+- Updated README.md
+ ([7b523cb](https://github.com/tj-actions/semver-diff/commit/7b523cb0470bb05ceb8bbe943e9b506d28c9f8dc)) - (jackton1)
+- Update action.yml ([ff8b3c6](https://github.com/tj-actions/semver-diff/commit/ff8b3c6175ffac97ae15ef27fba4c776b8a28a2f)) - (Tonye Jack)
+- Update README.md ([5086f64](https://github.com/tj-actions/semver-diff/commit/5086f6487516013fc156452146f5d1e553498a6e)) - (Tonye Jack)
+
+## 📝 Other
+
+- PR [#155](https://github.com/tj-actions/semver-diff/pull/155): update tj-actions/verify-changed-files action to v19 ([8236327](https://github.com/tj-actions/semver-diff/commit/8236327af8bb37c3d49012ace95ec783869c87a2)) - (repo-ranger[bot])
+- PR [#154](https://github.com/tj-actions/semver-diff/pull/154): update peter-evans/create-pull-request action to v6.0.1 ([a18d082](https://github.com/tj-actions/semver-diff/commit/a18d0829e53b91c23685de3e3c05706dae8eefa0)) - (repo-ranger[bot])
+- PR [#153](https://github.com/tj-actions/semver-diff/pull/153): update codacy/codacy-analysis-cli-action action to v4.4.0 ([1912694](https://github.com/tj-actions/semver-diff/commit/19126948ec4f9276bf52ec637ac0467f327f3585)) - (repo-ranger[bot])
+- PR [#152](https://github.com/tj-actions/semver-diff/pull/152): update tj-actions/verify-changed-files action to v18 ([1f319b0](https://github.com/tj-actions/semver-diff/commit/1f319b0a91aeee99f09a9d3a66806159084093dc)) - (repo-ranger[bot])
+- PR [#151](https://github.com/tj-actions/semver-diff/pull/151): update peter-evans/create-pull-request action to v6 ([f3b8e5f](https://github.com/tj-actions/semver-diff/commit/f3b8e5f4ceb889e03834d1c136984cccdea8b911)) - (repo-ranger[bot])
+- PR [#150](https://github.com/tj-actions/semver-diff/pull/150): update tj-actions/auto-doc action to v3.4.1 ([d98855c](https://github.com/tj-actions/semver-diff/commit/d98855cca2af8be812245ebf702a06ba86b06e16)) - (repo-ranger[bot])
+- PR [#149](https://github.com/tj-actions/semver-diff/pull/149): update tj-actions/verify-changed-files action to v17 ([f66f0c1](https://github.com/tj-actions/semver-diff/commit/f66f0c10c79356f93a394ea7c52aab8b569f1dfe)) - (repo-ranger[bot])
+- PR [#148](https://github.com/tj-actions/semver-diff/pull/148): update github/codeql-action action to v3 ([b384ae6](https://github.com/tj-actions/semver-diff/commit/b384ae6b83f0ac4fc7f4dbc5ad0b29ad551d5b58)) - (repo-ranger[bot])
+- PR [#146](https://github.com/tj-actions/semver-diff/pull/146): update tj-actions/auto-doc action to v3.4.0 ([682a2f2](https://github.com/tj-actions/semver-diff/commit/682a2f251a7d1c10f47c92bd546993bc41ad6b0f)) - (repo-ranger[bot])
+- PR [#145](https://github.com/tj-actions/semver-diff/pull/145): update tj-actions/auto-doc action to v3.3.0 ([b73b649](https://github.com/tj-actions/semver-diff/commit/b73b649a867b9fba455b6e54842deb2aaef32f4f)) - (repo-ranger[bot])
+- PR [#144](https://github.com/tj-actions/semver-diff/pull/144): update tj-actions/auto-doc action to v3.2.1 ([94b2b90](https://github.com/tj-actions/semver-diff/commit/94b2b90bf2041ef607dbdeb00770ff191af38bb1)) - (repo-ranger[bot])
+- PR [#143](https://github.com/tj-actions/semver-diff/pull/143): update tj-actions/auto-doc action to v3.2.0 ([7b31707](https://github.com/tj-actions/semver-diff/commit/7b3170728c9d9cede726c0cfed9d80cdc4402a23)) - (repo-ranger[bot])
+- PR [#142](https://github.com/tj-actions/semver-diff/pull/142): update tj-actions/auto-doc action to v3.1.1 ([ec36abe](https://github.com/tj-actions/semver-diff/commit/ec36abe1631a2118d63b67d859cbce5293ce5494)) - (repo-ranger[bot])
+- PR [#141](https://github.com/tj-actions/semver-diff/pull/141): update actions/checkout action to v4.1.1 ([24c1088](https://github.com/tj-actions/semver-diff/commit/24c1088ab17e73cc7198d450e84dfb542e6be0b6)) - (repo-ranger[bot])
+- PR [#140](https://github.com/tj-actions/semver-diff/pull/140): update tj-actions/auto-doc action to v3.1.0 ([8c0bb57](https://github.com/tj-actions/semver-diff/commit/8c0bb579b82e71be8a1736e0a2b2e600c10829ac)) - (repo-ranger[bot])
+- PR [#139](https://github.com/tj-actions/semver-diff/pull/139): update actions/checkout action to v4.1.0 ([5d1c19d](https://github.com/tj-actions/semver-diff/commit/5d1c19defeffcef1dccb314ecb3a670e928e5e47)) - (repo-ranger[bot])
+- PR [#138](https://github.com/tj-actions/semver-diff/pull/138): update tj-actions/auto-doc action to v3.0.1 ([01c01f5](https://github.com/tj-actions/semver-diff/commit/01c01f547d99ab5f7513a4562baab79bcc5f3305)) - (repo-ranger[bot])
+- PR [#137](https://github.com/tj-actions/semver-diff/pull/137): update actions/checkout action to v4 ([3300e3e](https://github.com/tj-actions/semver-diff/commit/3300e3e882252a71a96fd76f062af3eb38fa19cb)) - (repo-ranger[bot])
+- PR [#135](https://github.com/tj-actions/semver-diff/pull/135): remove deprecated set-output call ([e37231e](https://github.com/tj-actions/semver-diff/commit/e37231e5423951d037b7c980ff588bc99321f401)) - (repo-ranger[bot])
+- PR [#134](https://github.com/tj-actions/semver-diff/pull/134): update tj-actions/release-tagger action to v4 ([d40fc5d](https://github.com/tj-actions/semver-diff/commit/d40fc5d40ce13e85f919b79c5ae646962cd563fb)) - (repo-ranger[bot])
+- PR [#133](https://github.com/tj-actions/semver-diff/pull/133): update actions/checkout action to v3.6.0 ([4f10709](https://github.com/tj-actions/semver-diff/commit/4f10709a2474c9d751dcb8be34214c42032e12ef)) - (repo-ranger[bot])
+- PR [#132](https://github.com/tj-actions/semver-diff/pull/132): README.md ([237a46a](https://github.com/tj-actions/semver-diff/commit/237a46af676b080a7cf83e2802ec05097650356e)) - (repo-ranger[bot])
+- PR [#131](https://github.com/tj-actions/semver-diff/pull/131): ([e8a3907](https://github.com/tj-actions/semver-diff/commit/e8a390795195567d60429fb1957c4d56c57fadb6)) - (Tonye Jack)
+- PR [#130](https://github.com/tj-actions/semver-diff/pull/130): update tj-actions/auto-doc action to v2.9.0 ([6f2fcf3](https://github.com/tj-actions/semver-diff/commit/6f2fcf39e92f7f285d8ae8b0f861ecee1888b845)) - (repo-ranger[bot])
+- PR [#129](https://github.com/tj-actions/semver-diff/pull/129): update tj-actions/auto-doc action to v2.8.0 ([674842b](https://github.com/tj-actions/semver-diff/commit/674842b243df1b1315f6eff98f244b9b749ed4fb)) - (repo-ranger[bot])
+- PR [#121](https://github.com/tj-actions/semver-diff/pull/121): README.md ([632d877](https://github.com/tj-actions/semver-diff/commit/632d87732c52b76804329d3c28708cf7bd133aee)) - (repo-ranger[bot])
+- PR [#116](https://github.com/tj-actions/semver-diff/pull/116): README.md ([7870add](https://github.com/tj-actions/semver-diff/commit/7870add04e20075f667a10e5f975ee295eb12b1a)) - (repo-ranger[bot])
+- PR [#93](https://github.com/tj-actions/semver-diff/pull/93): README.md ([e5845fb](https://github.com/tj-actions/semver-diff/commit/e5845fb5d5e7f8a3b572b6c16b276acdfdc5bfbc)) - (repo-ranger[bot])
+- PR [#90](https://github.com/tj-actions/semver-diff/pull/90): to v2.4.1 ([e838bd8](https://github.com/tj-actions/semver-diff/commit/e838bd829d0440d1b011b045c63d496801d61ada)) - (repo-ranger[bot])
+
+## ⚙️ Miscellaneous Tasks
+
+- **deps:** Update tj-actions/verify-changed-files action to v19 ([3f8fb1f](https://github.com/tj-actions/semver-diff/commit/3f8fb1f85c37f8568b14c9f50c54aed0ea3e44a1)) - (renovate[bot])
+- **deps:** Update peter-evans/create-pull-request action to v6.0.1 ([1237051](https://github.com/tj-actions/semver-diff/commit/1237051d9af019479aaf288cb33371bc41541c69)) - (renovate[bot])
+- **deps:** Update codacy/codacy-analysis-cli-action action to v4.4.0 ([c194a65](https://github.com/tj-actions/semver-diff/commit/c194a6540ca50ae9383a242c55b1e7d059a3dfac)) - (renovate[bot])
+- **deps:** Update tj-actions/verify-changed-files action to v18 ([88a43f4](https://github.com/tj-actions/semver-diff/commit/88a43f4f7b2ac87828b63f40ed380fbb355c90bf)) - (renovate[bot])
+- **deps:** Update peter-evans/create-pull-request action to v6 ([3d11870](https://github.com/tj-actions/semver-diff/commit/3d11870eac21361bf2fa9438dd9d38016c70a492)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v3.4.1 ([1dd4ffe](https://github.com/tj-actions/semver-diff/commit/1dd4ffe445c56ff71312b18010a37bc92dec127a)) - (renovate[bot])
+- **deps:** Update tj-actions/verify-changed-files action to v17 ([b274407](https://github.com/tj-actions/semver-diff/commit/b2744078d5ce42c7e6fc569ea8d8cbcc51ff9c09)) - (renovate[bot])
+- **deps:** Update github/codeql-action action to v3 ([8c6fd67](https://github.com/tj-actions/semver-diff/commit/8c6fd6702b7763c01390e50d4e59ac4d5d6e8eb6)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v3.4.0 ([0ad3d3c](https://github.com/tj-actions/semver-diff/commit/0ad3d3c5d3667665cf0226baa0f6cef74a1f27a8)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v3.3.0 ([9b19f08](https://github.com/tj-actions/semver-diff/commit/9b19f0812e80d6ca6fd3021c00178812ecf8abe8)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v3.2.1 ([fdb1442](https://github.com/tj-actions/semver-diff/commit/fdb1442a14eecc2eee03a578b82c03f1f8388433)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v3.2.0 ([c15cb35](https://github.com/tj-actions/semver-diff/commit/c15cb3503cbc2e8720f4d62e11c332752d76fd65)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v3.1.1 ([45a39df](https://github.com/tj-actions/semver-diff/commit/45a39df6d0033e2a64440dec54df5a80d9039898)) - (renovate[bot])
+- **deps:** Update actions/checkout action to v4.1.1 ([d813d78](https://github.com/tj-actions/semver-diff/commit/d813d781f1483f11491a13c39a2ce57bda9bd3a1)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v3.1.0 ([0b38fda](https://github.com/tj-actions/semver-diff/commit/0b38fdaafd02289cd587d847bcb9bfd0ebe0a59f)) - (renovate[bot])
+- **deps:** Update actions/checkout action to v4.1.0 ([22aec7c](https://github.com/tj-actions/semver-diff/commit/22aec7c3e50885d334c39686e4cd7bbe503d9805)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v3.0.1 ([971f00a](https://github.com/tj-actions/semver-diff/commit/971f00acf94cf5bbf347e4bd005672a07df68ec1)) - (renovate[bot])
+- **deps:** Update actions/checkout action to v4 ([240af97](https://github.com/tj-actions/semver-diff/commit/240af97ca834bd4151ee64c169a96b20f22e681a)) - (renovate[bot])
+- Remove deprecated set-output call ([fe75bcc](https://github.com/tj-actions/semver-diff/commit/fe75bcce4bee074415dd0d8acd735dfb6204a3a3)) - (Tonye Jack)
+- **deps:** Update tj-actions/release-tagger action to v4 ([9cffa8d](https://github.com/tj-actions/semver-diff/commit/9cffa8d60d725f837f20ac15be3466bdc7fb2969)) - (renovate[bot])
+- **deps:** Update actions/checkout action to v3.6.0 ([a2ccaa9](https://github.com/tj-actions/semver-diff/commit/a2ccaa9ef3125f1a07d36b663ac46869bc6202ec)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v3 ([7da10d5](https://github.com/tj-actions/semver-diff/commit/7da10d52b38538952adce1925acd89a515f8bf2a)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.9.0 ([367f58b](https://github.com/tj-actions/semver-diff/commit/367f58baebf80ab823e85f3b60fa38c2538784e8)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.8.0 ([041801d](https://github.com/tj-actions/semver-diff/commit/041801d89494c6cb97e962548a28b4dd1c6991f3)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.7.1 ([5c8bf20](https://github.com/tj-actions/semver-diff/commit/5c8bf20d1a58d93f0d79a96ae89d94136899993e)) - (renovate[bot])
+- **deps:** Update tj-actions/verify-changed-files action to v16 ([260dade](https://github.com/tj-actions/semver-diff/commit/260dadea64bb6093f6fb63ce04fbe9757aaa2316)) - (renovate[bot])
+- **deps:** Update peter-evans/create-pull-request action to v5.0.2 ([9f41220](https://github.com/tj-actions/semver-diff/commit/9f41220a5a1bbc492af7fb6350ede549462cf610)) - (renovate[bot])
+- **deps:** Update tj-actions/verify-changed-files action to v15 ([53e5650](https://github.com/tj-actions/semver-diff/commit/53e5650e39726558bce16b48c8089207b248c3e1)) - (renovate[bot])
+- **deps:** Update actions/checkout action to v3.5.3 ([ba90782](https://github.com/tj-actions/semver-diff/commit/ba90782ea35efa2a26113533cdbfba6cd96435f1)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.7.0 ([7d9287a](https://github.com/tj-actions/semver-diff/commit/7d9287aacaf9f34ca9703dd6b1f4ae96bbde9e6b)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.6.1 ([91eed29](https://github.com/tj-actions/semver-diff/commit/91eed29c7f728103b9f4cbd5e062070d5356d9d4)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.5.4 ([bcf2cfd](https://github.com/tj-actions/semver-diff/commit/bcf2cfdbaa309b60279edd3e9d995e18b75e854b)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.5.2 ([fc1bd31](https://github.com/tj-actions/semver-diff/commit/fc1bd314baeb75b8b9cff79e8e1e92eaca5f0527)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.5.0 ([e30a4fb](https://github.com/tj-actions/semver-diff/commit/e30a4fb4dc57b65df43bfd0fda0700c0fd03d1d6)) - (renovate[bot])
+- **deps:** Update peter-evans/create-pull-request action to v5.0.1 ([155a6cf](https://github.com/tj-actions/semver-diff/commit/155a6cfa101574e8d8e34ed9ade32aabc3a665a1)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.4.0 ([29a1c46](https://github.com/tj-actions/semver-diff/commit/29a1c4607c3e96857f607dc9f7536d21e1437a64)) - (renovate[bot])
+- **deps:** Update actions/checkout action to v3.5.2 ([c6384b4](https://github.com/tj-actions/semver-diff/commit/c6384b4f1690a6268459bc3664beaff87c84995b)) - (renovate[bot])
+- **deps:** Update actions/checkout action to v3.5.1 ([ecbe201](https://github.com/tj-actions/semver-diff/commit/ecbe20179fa18a0c5e6ba370f564bbac43c9c482)) - (renovate[bot])
+- **deps:** Update peter-evans/create-pull-request action to v5 ([8a7419c](https://github.com/tj-actions/semver-diff/commit/8a7419c7708f10d6c042afb74318e1d6a239a2b3)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.3.2 ([0945d3b](https://github.com/tj-actions/semver-diff/commit/0945d3b00f20511e8867cce65de075ef6055f1e7)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.3.1 ([f9172fe](https://github.com/tj-actions/semver-diff/commit/f9172fefefc90860f213f3565f0be1f0b43b0eeb)) - (renovate[bot])
+- **deps:** Update actions/checkout action to v3.5.0 ([3abbca1](https://github.com/tj-actions/semver-diff/commit/3abbca126f6b7dc01967ea2232d67198681bc536)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.3.0 ([78c9b43](https://github.com/tj-actions/semver-diff/commit/78c9b43ec101911b7b1ddce6554403944982da37)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.2.7 ([91ca449](https://github.com/tj-actions/semver-diff/commit/91ca449141d4963d5481bd77fca7d52a03fdc562)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.2.4 ([52da185](https://github.com/tj-actions/semver-diff/commit/52da1859f82efe6450ec4fe00d6c4d06fa81a663)) - (renovate[bot])
+- **deps:** Update tj-actions/verify-changed-files action to v14 ([611cd4e](https://github.com/tj-actions/semver-diff/commit/611cd4e2a8d093677652cbab3a576bfea90abb68)) - (renovate[bot])
+- **deps:** Update actions/checkout action to v3.4.0 ([087b29e](https://github.com/tj-actions/semver-diff/commit/087b29e49709d5b1d3140acf56561c58584760dc)) - (renovate[bot])
+- **deps:** Update peter-evans/create-pull-request action to v4.2.4 ([cb79388](https://github.com/tj-actions/semver-diff/commit/cb793887b7d377bb4e6e92e5707aa4981f8b4eb6)) - (renovate[bot])
+- **deps:** Update tj-actions/release-tagger action to v3 ([3ba2149](https://github.com/tj-actions/semver-diff/commit/3ba21492fc2f9066b17eb39552b756aba747e6c3)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.2.3 ([e8a461f](https://github.com/tj-actions/semver-diff/commit/e8a461fcbc788e970017134c3c505beeccaa20bc)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.2.1 ([cefe73f](https://github.com/tj-actions/semver-diff/commit/cefe73fc01f30e9b684aa9be2f0129632cbe635e)) - (renovate[bot])
+- **deps:** Update tj-actions/github-changelog-generator action to v1.18 ([583e1d8](https://github.com/tj-actions/semver-diff/commit/583e1d8827888d680feab506e81d416f6b3561a7)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2.2.0 ([29ceb29](https://github.com/tj-actions/semver-diff/commit/29ceb29bcfce3303c86e6ca2f750dd6aaffd13d2)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v2 ([cb0dc6f](https://github.com/tj-actions/semver-diff/commit/cb0dc6f1e22a66d6960ae1305c58e7bf5276f051)) - (renovate[bot])
+- **deps:** Update codacy/codacy-analysis-cli-action action to v4.3.0 ([20d5bb0](https://github.com/tj-actions/semver-diff/commit/20d5bb0f4d3812197165cdfc84ebe6ab12fccf48)) - (renovate[bot])
+- **deps:** Update pascalgn/automerge-action action to v0.15.6 ([2db6695](https://github.com/tj-actions/semver-diff/commit/2db6695c62c49e42525e728dfefd2c806b4598cd)) - (renovate[bot])
+- **deps:** Update tj-actions/auto-doc action to v1.7.4 ([3562278](https://github.com/tj-actions/semver-diff/commit/3562278effcf38d9967806ccd969f26bd2747241)) - (renovate[bot])
+
+## 🛡️ Security
+
+- Updated permissions ([#147](https://github.com/tj-actions/semver-diff/issues/147)) ([e1c67be](https://github.com/tj-actions/semver-diff/commit/e1c67be23e8d4290f479f1ae4024c418c99d4940)) - (Tonye Jack)
+
+## ⬆️ Upgrades
+
+- Semver tool to v3.4.0 ([#156](https://github.com/tj-actions/semver-diff/issues/156)) ([2914abe](https://github.com/tj-actions/semver-diff/commit/2914abe450b45dcc336adc9323b46c6a3edf9ff6)) - (Tonye Jack)
+- Upgraded from v2.4.0 -> v2.4.1
+ ([43b21e6](https://github.com/tj-actions/semver-diff/commit/43b21e685ae1b89c7cb565ffc2835a318a37f4ee)) - (jackton1)
+
+# [2.4.1](https://github.com/tj-actions/semver-diff/compare/v2.4.0...v2.4.1) - (2023-01-10)
+
+## 🔄 Update
+
+- Update entrypoint.sh ([e18ea2e](https://github.com/tj-actions/semver-diff/commit/e18ea2e8548c7c5b082ebe123ecc5001cd7ce940)) - (Tonye Jack)
+
+## 📝 Other
+
+- PR [#89](https://github.com/tj-actions/semver-diff/pull/89): to v2.4.0 ([92f2a99](https://github.com/tj-actions/semver-diff/commit/92f2a9919a309ac14ba09db91276129fd440809c)) - (repo-ranger[bot])
+
+## ⬆️ Upgrades
+
+- Upgraded from v2.3.0 -> v2.4.0
+ ([ad2179c](https://github.com/tj-actions/semver-diff/commit/ad2179c18ba8b6c372dd7de2e9a3d6366280b10e)) - (jackton1)
+
+# [2.4.0](https://github.com/tj-actions/semver-diff/compare/v2.3.0...v2.4.0) - (2023-01-10)
+
+## 🚀 Features
+
+- Fix deprecation warning ([1004e55](https://github.com/tj-actions/semver-diff/commit/1004e55c2bebcebca505db3e606399f24666038d)) - (Tonye Jack)
+
+## 📝 Other
+
+- PR [#88](https://github.com/tj-actions/semver-diff/pull/88): ([64351d8](https://github.com/tj-actions/semver-diff/commit/64351d8869411390d7360ec81118f5bc6ca7895f)) - (Tonye Jack)
+- PR [#87](https://github.com/tj-actions/semver-diff/pull/87): to v2.3.0 ([5764b18](https://github.com/tj-actions/semver-diff/commit/5764b189d609f522feba3af7c96f0f544ee28695)) - (repo-ranger[bot])
+
+## ⬆️ Upgrades
+
+- Upgraded from v2.2.0 -> v2.3.0
+ ([48e3a22](https://github.com/tj-actions/semver-diff/commit/48e3a227a7198a0cfda2d20a44d5eb3f77494e94)) - (jackton1)
+
+# [2.3.0](https://github.com/tj-actions/semver-diff/compare/v2.2.0...v2.3.0) - (2023-01-10)
+
+## 🔄 Update
+
+- Update entrypoint.sh ([42697fa](https://github.com/tj-actions/semver-diff/commit/42697fa9003c51aa6b81b1b1e6a045f309e2e31b)) - (Tonye Jack)
+- Update entrypoint.sh ([70c9dc5](https://github.com/tj-actions/semver-diff/commit/70c9dc557ff71713d56a49cca18a33cca302e372)) - (Tonye Jack)
+- Update README.md ([fe391a8](https://github.com/tj-actions/semver-diff/commit/fe391a82d2fb0e57a31a3395827c4bbe70dea982)) - (Tonye Jack)
+
+## 📝 Other
+
+- PR [#86](https://github.com/tj-actions/semver-diff/pull/86): ([88ea224](https://github.com/tj-actions/semver-diff/commit/88ea224f9680661ce919674dd81be3333b8a4d6d)) - (Tonye Jack)
+
+## ⬆️ Upgrades
+
+- Upgraded from v2.1.0 -> v2.2.0
+ ([160e2ce](https://github.com/tj-actions/semver-diff/commit/160e2ceaa68813e8b064dc10678421243e02c2b2)) - (jackton1)
+
+# [2.2.0](https://github.com/tj-actions/semver-diff/compare/v2.1.0...v2.2.0) - (2023-01-10)
+
+## 📦 Bumps
+
+- Bump hmarr/auto-approve-action from 2 to 3
+
+Bumps [hmarr/auto-approve-action](https://github.com/hmarr/auto-approve-action) from 2 to 3.
+- [Release notes](https://github.com/hmarr/auto-approve-action/releases)
+- [Commits](https://github.com/hmarr/auto-approve-action/compare/v2...v3)
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v2...v2.4.0)
+---
+updated-dependencies:
+- dependency-name: hmarr/auto-approve-action
+ dependency-type: direct:production
+ update-type: version-update:semver-major
+...
-## [v2](https://github.com/tj-actions/semver-diff/tree/v2) (2023-01-10)
+Signed-off-by: dependabot[bot] ([7c195a2](https://github.com/tj-actions/semver-diff/commit/7c195a22356492e2fd9ed57601e992226971bbe2)) - (dependabot[bot])
+- Bump codacy/codacy-analysis-cli-action from 4.1.0 to 4.2.0
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v2.3.0...v2)
+Bumps [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) from 4.1.0 to 4.2.0.
+- [Release notes](https://github.com/codacy/codacy-analysis-cli-action/releases)
+- [Commits](https://github.com/codacy/codacy-analysis-cli-action/compare/v4.1.0...v4.2.0)
-**Merged pull requests:**
+---
+updated-dependencies:
+- dependency-name: codacy/codacy-analysis-cli-action
+ dependency-type: direct:production
+ update-type: version-update:semver-minor
+...
-- feat: fix deprecation warning [\#88](https://github.com/tj-actions/semver-diff/pull/88) ([jackton1](https://github.com/jackton1))
-- Upgraded to v2.3.0 [\#87](https://github.com/tj-actions/semver-diff/pull/87) ([jackton1](https://github.com/jackton1))
-
-## [v2.3.0](https://github.com/tj-actions/semver-diff/tree/v2.3.0) (2023-01-10)
-
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v2.2.0...v2.3.0)
-
-**Merged pull requests:**
-
-- Upgraded to v2.2.0 [\#86](https://github.com/tj-actions/semver-diff/pull/86) ([jackton1](https://github.com/jackton1))
-
-## [v2.2.0](https://github.com/tj-actions/semver-diff/tree/v2.2.0) (2023-01-10)
-
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v2.1.0...v2.2.0)
-
-**Closed issues:**
-
-- Dependency Dashboard [\#3](https://github.com/tj-actions/semver-diff/issues/3)
-
-**Merged pull requests:**
-
-- Updated README.md [\#85](https://github.com/tj-actions/semver-diff/pull/85) ([jackton1](https://github.com/jackton1))
-- Update actions/checkout action to v3.3.0 [\#84](https://github.com/tj-actions/semver-diff/pull/84) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/auto-doc action to v1.7.3 [\#83](https://github.com/tj-actions/semver-diff/pull/83) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/auto-doc action to v1.7.2 [\#82](https://github.com/tj-actions/semver-diff/pull/82) ([renovate[bot]](https://github.com/apps/renovate))
-- Updated README.md [\#81](https://github.com/tj-actions/semver-diff/pull/81) ([jackton1](https://github.com/jackton1))
-- Update tj-actions/github-changelog-generator action to v1.17 [\#80](https://github.com/tj-actions/semver-diff/pull/80) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/verify-changed-files action to v13 [\#79](https://github.com/tj-actions/semver-diff/pull/79) ([renovate[bot]](https://github.com/apps/renovate))
-- Update cirrus-actions/rebase action to v1.8 [\#78](https://github.com/tj-actions/semver-diff/pull/78) ([renovate[bot]](https://github.com/apps/renovate))
-- Update actions/checkout action to v3.2.0 [\#77](https://github.com/tj-actions/semver-diff/pull/77) ([renovate[bot]](https://github.com/apps/renovate))
-- Update peter-evans/create-pull-request action to v4.2.3 [\#76](https://github.com/tj-actions/semver-diff/pull/76) ([renovate[bot]](https://github.com/apps/renovate))
-- Update peter-evans/create-pull-request action to v4.2.2 [\#75](https://github.com/tj-actions/semver-diff/pull/75) ([renovate[bot]](https://github.com/apps/renovate))
-- Update peter-evans/create-pull-request action to v4.2.1 [\#74](https://github.com/tj-actions/semver-diff/pull/74) ([renovate[bot]](https://github.com/apps/renovate))
-- Bump hmarr/auto-approve-action from 2 to 3 [\#73](https://github.com/tj-actions/semver-diff/pull/73) ([dependabot[bot]](https://github.com/apps/dependabot))
-- Update peter-evans/create-pull-request action to v4.2.0 [\#72](https://github.com/tj-actions/semver-diff/pull/72) ([renovate[bot]](https://github.com/apps/renovate))
-- Update pascalgn/automerge-action action to v0.15.5 [\#71](https://github.com/tj-actions/semver-diff/pull/71) ([renovate[bot]](https://github.com/apps/renovate))
-- Update peter-evans/create-pull-request action to v4.1.4 [\#70](https://github.com/tj-actions/semver-diff/pull/70) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/verify-changed-files action to v12 [\#69](https://github.com/tj-actions/semver-diff/pull/69) ([renovate[bot]](https://github.com/apps/renovate))
-- Update actions/checkout action to v3.1.0 [\#68](https://github.com/tj-actions/semver-diff/pull/68) ([renovate[bot]](https://github.com/apps/renovate))
-- Update peter-evans/create-pull-request action to v4.1.3 [\#67](https://github.com/tj-actions/semver-diff/pull/67) ([renovate[bot]](https://github.com/apps/renovate))
-- Update peter-evans/create-pull-request action to v4.1.2 [\#66](https://github.com/tj-actions/semver-diff/pull/66) ([renovate[bot]](https://github.com/apps/renovate))
-- Bump codacy/codacy-analysis-cli-action from 4.1.0 to 4.2.0 [\#65](https://github.com/tj-actions/semver-diff/pull/65) ([dependabot[bot]](https://github.com/apps/dependabot))
-- Update tj-actions/sync-release-version action to v13 [\#64](https://github.com/tj-actions/semver-diff/pull/64) ([renovate[bot]](https://github.com/apps/renovate))
-- Upgraded to v2.1.0 [\#63](https://github.com/tj-actions/semver-diff/pull/63) ([jackton1](https://github.com/jackton1))
+Signed-off-by: dependabot[bot] ([e7e80b7](https://github.com/tj-actions/semver-diff/commit/e7e80b76100bda4a0bbf15cf9ee4b550846a79e6)) - (dependabot[bot])
-## [v2.1.0](https://github.com/tj-actions/semver-diff/tree/v2.1.0) (2022-09-19)
+## 🔄 Update
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v2.0.0...v2.1.0)
+- Updated README.md
+ ([5304e55](https://github.com/tj-actions/semver-diff/commit/5304e55829cd081666ee31d36bbfad4bc6cd136a)) - (jackton1)
+- Update action.yml ([13c343f](https://github.com/tj-actions/semver-diff/commit/13c343f580341db8cab23f5c42550c2e4ee74c12)) - (Tonye Jack)
+- Update README.md ([d0da8ec](https://github.com/tj-actions/semver-diff/commit/d0da8ec562b97d99e58ab6ba638ae5e64f138517)) - (Tonye Jack)
+- Update actions/checkout action to v3.3.0 ([3b55894](https://github.com/tj-actions/semver-diff/commit/3b55894f22d0af21b532ef5ea4c853bb952d7869)) - (renovate[bot])
+- Update tj-actions/auto-doc action to v1.7.3 ([9d292ee](https://github.com/tj-actions/semver-diff/commit/9d292ee47cb9117f0595827cc8d442217045fe24)) - (renovate[bot])
+- Updated README.md
+ ([7352946](https://github.com/tj-actions/semver-diff/commit/73529461f11c7a0854f7881bf7b3e67930595ed4)) - (jackton1)
+- Update tj-actions/auto-doc action to v1.7.2 ([da99da8](https://github.com/tj-actions/semver-diff/commit/da99da8ff24e1eac346f2d29d361871c1730480c)) - (renovate[bot])
+- Updated .github/workflows/update-readme.yml ([512b231](https://github.com/tj-actions/semver-diff/commit/512b23136671dc2a30c7e88aa61b779dd4b7265b)) - (Tonye Jack)
+- Update tj-actions/github-changelog-generator action to v1.17 ([707fc89](https://github.com/tj-actions/semver-diff/commit/707fc8977e034f55e5abe019f9ba38e1a2ce70ad)) - (renovate[bot])
+- Update tj-actions/verify-changed-files action to v13 ([6bd8669](https://github.com/tj-actions/semver-diff/commit/6bd8669868a063db7baa1c20eeeeea5f9a047052)) - (renovate[bot])
+- Update cirrus-actions/rebase action to v1.8 ([4cabefb](https://github.com/tj-actions/semver-diff/commit/4cabefbf9c44da4c15e908f207fea336c20ae4a5)) - (renovate[bot])
+- Update actions/checkout action to v3.2.0 ([8b4af1e](https://github.com/tj-actions/semver-diff/commit/8b4af1edc1ef00218869c06aeb84726c63ea3cf9)) - (renovate[bot])
+- Update sync-release-version.yml ([2ed9800](https://github.com/tj-actions/semver-diff/commit/2ed9800674754f295b70b0ab493ce7569f01c3e7)) - (Tonye Jack)
+- Update peter-evans/create-pull-request action to v4.2.3 ([2e18151](https://github.com/tj-actions/semver-diff/commit/2e1815132c863166d53182bd40bc4d813d34efc5)) - (renovate[bot])
+- Update peter-evans/create-pull-request action to v4.2.2 ([597124f](https://github.com/tj-actions/semver-diff/commit/597124f02f75ba33a14a5783f5ab603dac6dfacb)) - (renovate[bot])
+- Update peter-evans/create-pull-request action to v4.2.1 ([284a2ae](https://github.com/tj-actions/semver-diff/commit/284a2aed208011007da28136cb7c5a508c7a4722)) - (renovate[bot])
+- Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([0122989](https://github.com/tj-actions/semver-diff/commit/0122989d712458b154511e032e61e4dca5168e68)) - (Tonye Jack)
+- Update peter-evans/create-pull-request action to v4.2.0 ([8f3b78a](https://github.com/tj-actions/semver-diff/commit/8f3b78a5d507abfb9b4448766162da9187284ef8)) - (renovate[bot])
+- Update pascalgn/automerge-action action to v0.15.5 ([7830944](https://github.com/tj-actions/semver-diff/commit/78309446f151824308f8782f45f2bdf6494ec9c7)) - (renovate[bot])
+- Update peter-evans/create-pull-request action to v4.1.4 ([c2b1f2f](https://github.com/tj-actions/semver-diff/commit/c2b1f2f889551e50ce4cc4adb7157867bcd0537c)) - (renovate[bot])
+- Update tj-actions/verify-changed-files action to v12 ([e137a15](https://github.com/tj-actions/semver-diff/commit/e137a15f7bb70941dce0efdea6a6d26b56b56e6c)) - (renovate[bot])
+- Updated .github/workflows/greetings.yml ([448a030](https://github.com/tj-actions/semver-diff/commit/448a0304bf23684ff930b8617e067968526be2fa)) - (Tonye Jack)
+- Update actions/checkout action to v3.1.0 ([aa77775](https://github.com/tj-actions/semver-diff/commit/aa777758c520677e9df27279ef47dd6885c84d1a)) - (renovate[bot])
+- Update peter-evans/create-pull-request action to v4.1.3 ([194ed4a](https://github.com/tj-actions/semver-diff/commit/194ed4abbce96e9db92be0ac5995cc2c1c27105c)) - (renovate[bot])
+- Update peter-evans/create-pull-request action to v4.1.2 ([4977afa](https://github.com/tj-actions/semver-diff/commit/4977afa15920c734ed8aec5956c752f796f64595)) - (renovate[bot])
+- Updated .github/workflows/sync-release-version.yml ([ae462a4](https://github.com/tj-actions/semver-diff/commit/ae462a48cc9abdccfc13dc7cd486303dcc7f3734)) - (Tonye Jack)
+- Updated .github/workflows/sync-release-version.yml ([526d421](https://github.com/tj-actions/semver-diff/commit/526d42142e9aa166d17fe6446fe4ff1de04da062)) - (Tonye Jack)
+- Updated .github/workflows/codacy-analysis.yml ([fc656be](https://github.com/tj-actions/semver-diff/commit/fc656be0ed577f42f8ca39249df5bac01b12c42f)) - (Tonye Jack)
+- Updated .github/workflows/codacy-analysis.yml ([d4fd9aa](https://github.com/tj-actions/semver-diff/commit/d4fd9aa598e30579aad21aec57d2f4ad91fb2b2f)) - (Tonye Jack)
+- Updated .github/workflows/greetings.yml ([b20ebb2](https://github.com/tj-actions/semver-diff/commit/b20ebb2f5fd79bcd8f6cb437fdaeb87a33bbf798)) - (Tonye Jack)
+- Updated .github/workflows/codacy-analysis.yml ([8fc0e08](https://github.com/tj-actions/semver-diff/commit/8fc0e08dbc35ca49d3bf7ae1b023215f1ccbb325)) - (Tonye Jack)
+- Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([642d772](https://github.com/tj-actions/semver-diff/commit/642d7723f39408a1c7ce04c723bc3161940c4801)) - (Tonye Jack)
+- Updated .github/ISSUE_TEMPLATE/feature_request.yaml ([f15ae48](https://github.com/tj-actions/semver-diff/commit/f15ae48bcc6438fbba60600dcf3fefda5a0efa02)) - (Tonye Jack)
+- Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([cfd2e63](https://github.com/tj-actions/semver-diff/commit/cfd2e63a4b3452cf64aae3de57f3634a0073f00e)) - (Tonye Jack)
+- Updated .github/workflows/sync-release-version.yml ([600db29](https://github.com/tj-actions/semver-diff/commit/600db294184fd9f1a1981809d41470b6ecad8f55)) - (Tonye Jack)
+- Update tj-actions/sync-release-version action to v13 ([c9d88d2](https://github.com/tj-actions/semver-diff/commit/c9d88d25d81300bd372e0b53fac4715d472b0542)) - (renovate[bot])
+
+## 📝 Other
+
+- PR [#85](https://github.com/tj-actions/semver-diff/pull/85): ([2d498d7](https://github.com/tj-actions/semver-diff/commit/2d498d7154a1a506a213d4b3cb0f73ce72c497bf)) - (Tonye Jack)
+- PR [#81](https://github.com/tj-actions/semver-diff/pull/81): ([ac552a9](https://github.com/tj-actions/semver-diff/commit/ac552a9394438045591438390fdef200d03294c1)) - (Tonye Jack)
+- PR [#63](https://github.com/tj-actions/semver-diff/pull/63): ([500b1ae](https://github.com/tj-actions/semver-diff/commit/500b1ae088958e7190239f23a874a85c91cca850)) - (Tonye Jack)
+
+## ⬆️ Upgrades
+
+- Upgraded from v2.0.0 → v2.1.0
+ ([3f342a6](https://github.com/tj-actions/semver-diff/commit/3f342a6ad16ba47a1e12e03e0ec6514a03e3a75d)) - (jackton1)
+
+# [2.1.0](https://github.com/tj-actions/semver-diff/compare/v2.0.0...v2.1.0) - (2022-09-19)
+
+## 🔄 Update
+
+- Update tj-actions/github-changelog-generator action to v1.15 ([5c17911](https://github.com/tj-actions/semver-diff/commit/5c17911c80fcc3d3d59f1793fc1c299626236b07)) - (renovate[bot])
+- Update tj-actions/verify-changed-files action to v11 ([dbc822d](https://github.com/tj-actions/semver-diff/commit/dbc822da552111bc1e6463c0793f03620b4bbd32)) - (renovate[bot])
+- Update tj-actions/github-changelog-generator action to v1.14 ([3369349](https://github.com/tj-actions/semver-diff/commit/3369349fd33b05f70fbf5cf60d7afc5829fda364)) - (renovate[bot])
+- Update tj-actions/verify-changed-files action to v10 ([599485c](https://github.com/tj-actions/semver-diff/commit/599485cc9c9abf13d631ae534ea7006c48a4e53e)) - (renovate[bot])
+- Update codacy/codacy-analysis-cli-action action to v4.1.0
+ ([b46c7e5](https://github.com/tj-actions/semver-diff/commit/b46c7e544608535647a131eb92aef338c2f6669c)) - (Renovate Bot)
+
+## 📝 Other
+
+- PR [#62](https://github.com/tj-actions/semver-diff/pull/62): ([781be0d](https://github.com/tj-actions/semver-diff/commit/781be0d066d1504693b2331f3d4bb17639853432)) - (Tonye Jack)
+- PR [#56](https://github.com/tj-actions/semver-diff/pull/56): to v2.0.0 ([ee9e892](https://github.com/tj-actions/semver-diff/commit/ee9e892fffd100778fdadd49713671f70139f234)) - (Tonye Jack)
+
+## ⚙️ Miscellaneous Tasks
+
+- Upgrade semver tool ([8b15819](https://github.com/tj-actions/semver-diff/commit/8b15819228189db00b8294e7f051a22a80f25981)) - (Tonye Jack)
+
+## ⬆️ Upgrades
+
+- Upgraded from v1.2.1 → v2.0.0
+ ([9509ee7](https://github.com/tj-actions/semver-diff/commit/9509ee71e02cb49e9322951042d8e9b0b7b7e1a3)) - (jackton1)
+
+# [2.0.0](https://github.com/tj-actions/semver-diff/compare/v1.2.1...v2.0.0) - (2022-06-12)
+
+## 📦 Bumps
+
+- Bump tj-actions/sync-release-version from 8.7 to 11
+
+Bumps [tj-actions/sync-release-version](https://github.com/tj-actions/sync-release-version) from 8.7 to 11.
+- [Release notes](https://github.com/tj-actions/sync-release-version/releases)
+- [Changelog](https://github.com/tj-actions/sync-release-version/blob/main/HISTORY.md)
+- [Commits](https://github.com/tj-actions/sync-release-version/compare/v8.7...v11)
+
+---
+updated-dependencies:
+- dependency-name: tj-actions/sync-release-version
+ dependency-type: direct:production
+ update-type: version-update:semver-major
+...
+
+Signed-off-by: dependabot[bot] ([492bd61](https://github.com/tj-actions/semver-diff/commit/492bd618e18fd5a1afecaa8a97b2925ed1d9abdc)) - (dependabot[bot])
+- Bump tj-actions/remark from 2.3 to 3
+
+Bumps [tj-actions/remark](https://github.com/tj-actions/remark) from 2.3 to 3.
+- [Release notes](https://github.com/tj-actions/remark/releases)
+- [Changelog](https://github.com/tj-actions/remark/blob/main/HISTORY.md)
+- [Commits](https://github.com/tj-actions/remark/compare/v2.3...v3)
+
+---
+updated-dependencies:
+- dependency-name: tj-actions/remark
+ dependency-type: direct:production
+ update-type: version-update:semver-major
+...
+
+Signed-off-by: dependabot[bot] ([72d6208](https://github.com/tj-actions/semver-diff/commit/72d6208a03f2fdcc357ce9eeefe9c228838afbcf)) - (dependabot[bot])
+
+## ➕ Add
+
+- Create dependabot.yml ([aaec7d1](https://github.com/tj-actions/semver-diff/commit/aaec7d12e40314fe2e9e8a065ecf6991edafb16b)) - (Tonye Jack)
+
+## ➖ Remove
+
+- Delete Dockerfile ([ff1f7fd](https://github.com/tj-actions/semver-diff/commit/ff1f7fd089524c1db2f394d7af8d398edbc2ca23)) - (Tonye Jack)
+
+## 🔄 Update
+
+- Update action.yml ([00f80cc](https://github.com/tj-actions/semver-diff/commit/00f80cca9f77ee3655feb710c523015fbf00d7c0)) - (Tonye Jack)
+- Update action.yml ([caf2d81](https://github.com/tj-actions/semver-diff/commit/caf2d8198252541f6720bdc3d4cc6c848d3d4a84)) - (Tonye Jack)
+- Update entrypoint.sh ([5b0876d](https://github.com/tj-actions/semver-diff/commit/5b0876d0c800aacc20cbdd3102a578fd31b52c85)) - (Tonye Jack)
+- Update dependency alpine to v3.16.0
+ ([16037d0](https://github.com/tj-actions/semver-diff/commit/16037d036e123672963c65d782043e0ddb5e5721)) - (Renovate Bot)
+- Update pascalgn/automerge-action action to v0.15.3
+ ([87ed31f](https://github.com/tj-actions/semver-diff/commit/87ed31fcaa4d0b8b1f6a4291cb673131bde35d7d)) - (Renovate Bot)
+- Update cirrus-actions/rebase action to v1.7
+ ([57c07f3](https://github.com/tj-actions/semver-diff/commit/57c07f37e689a3b31e19ec14a9f7b35cc90f886d)) - (Renovate Bot)
+- Update github/codeql-action action to v2
+ ([8df1884](https://github.com/tj-actions/semver-diff/commit/8df1884b9b52cfe3f95a25d6f47f4ca07e653ae7)) - (Renovate Bot)
+- Update actions/checkout action to v3.0.2
+ ([e853b1f](https://github.com/tj-actions/semver-diff/commit/e853b1fca55c7522762aa030cee6906956192a81)) - (Renovate Bot)
+- Update cirrus-actions/rebase action to v1.6
+ ([031c624](https://github.com/tj-actions/semver-diff/commit/031c6244b29c11fc7078973e9884c644464ffb97)) - (Renovate Bot)
+- Update actions/checkout action to v3.0.1
+ ([65dc740](https://github.com/tj-actions/semver-diff/commit/65dc740234ee090f178d059a9f4df46654dae167)) - (Renovate Bot)
+- Update dependency alpine to v3.15.4
+ ([50f399a](https://github.com/tj-actions/semver-diff/commit/50f399a2cba805c3d11c8befd8ab81927f2d2084)) - (Renovate Bot)
+- Update dependency alpine to v3.15.3
+ ([dd8fe65](https://github.com/tj-actions/semver-diff/commit/dd8fe653e928b55f151cedb28267d7ab15a809db)) - (Renovate Bot)
+- Update pascalgn/automerge-action action to v0.15.2
+ ([c51081c](https://github.com/tj-actions/semver-diff/commit/c51081c84ab1085de8c07247c16fea4edb9abd44)) - (Renovate Bot)
+- Update dependency alpine to v3.15.2
+ ([5a03026](https://github.com/tj-actions/semver-diff/commit/5a03026cfc1d8ee0d69a6a607fe8c060efa780ff)) - (Renovate Bot)
+- Update peter-evans/create-pull-request action to v4
+ ([14e92d7](https://github.com/tj-actions/semver-diff/commit/14e92d7cb61b942e6becce15ec1e2ed6290472e5)) - (Renovate Bot)
+
+## 📝 Other
+
+- PR [#53](https://github.com/tj-actions/semver-diff/pull/53): switch to use a composite action ([8a1c4aa](https://github.com/tj-actions/semver-diff/commit/8a1c4aa1a53c4da93fa0041c8130fb59e2551351)) - (Tonye Jack)
+- PR [#40](https://github.com/tj-actions/semver-diff/pull/40): ([ec1fa06](https://github.com/tj-actions/semver-diff/commit/ec1fa068b206c819d216d0c97e75cc6c4d804397)) - (Tonye Jack)
+
+## ⬆️ Upgrades
+
+- Upgraded from v1.2.0 → v1.2.1
+ ([5680b48](https://github.com/tj-actions/semver-diff/commit/5680b487cf54e018ac4c6ccc3160d1f6252cad8f)) - (jackton1)
+
+# [1.2.1](https://github.com/tj-actions/semver-diff/compare/v1.2.0...v1.2.1) - (2022-03-23)
+
+## ➕ Add
+
+- Added .github/workflows/codacy-analysis.yml ([5e399ad](https://github.com/tj-actions/semver-diff/commit/5e399ad4c85e8c1e6ec307037bb032ae31d477a0)) - (Tonye Jack)
+- Added .github/workflows/codacy-analysis.yml ([1791e60](https://github.com/tj-actions/semver-diff/commit/1791e60894b2cf87ba3dfec94f5eb735b106cdeb)) - (Tonye Jack)
+- Added .github/workflows/greetings.yml ([23ea5d3](https://github.com/tj-actions/semver-diff/commit/23ea5d3f8ce17428b7472788f8f640829e67951a)) - (Tonye Jack)
+- Added CODE_OF_CONDUCT.md ([16b7ff0](https://github.com/tj-actions/semver-diff/commit/16b7ff067bc4bc58383cff74fd76078d84002e45)) - (Tonye Jack)
+- Added .github/ISSUE_TEMPLATE/feature_request.yaml ([0daace3](https://github.com/tj-actions/semver-diff/commit/0daace3315bb09e9c5e3841d257ab6bca18ba545)) - (Tonye Jack)
+- Added .github/ISSUE_TEMPLATE/bug_report.yaml ([26467d6](https://github.com/tj-actions/semver-diff/commit/26467d64edb3a2cded2925e19caf9197b3cdc136)) - (Tonye Jack)
+- Added .whitesource ([0d15a77](https://github.com/tj-actions/semver-diff/commit/0d15a7744e6dfbe49168eb5b858a75d993d32f53)) - (Tonye Jack)
+- Added .github/workflows/update-readme.yml ([45cf28c](https://github.com/tj-actions/semver-diff/commit/45cf28cae6dc7f8a935e8e7b0ab7f6e9d11eb56b)) - (Tonye Jack)
+- Added .github/workflows/auto-merge.yml ([7430d2d](https://github.com/tj-actions/semver-diff/commit/7430d2da28e435473e23133ea65069b3631a9c32)) - (Tonye Jack)
+
+## ➖ Remove
+
+- Deleted .github/workflows/codacy-analysis.yml ([aa26d24](https://github.com/tj-actions/semver-diff/commit/aa26d24ae5ddae4a1f7ca1e68df6331550a4c2fd)) - (Tonye Jack)
+- Deleted .github/ISSUE_TEMPLATE/feature_request.md ([fea4f43](https://github.com/tj-actions/semver-diff/commit/fea4f43b965c5355979aa430c2b403d48c814459)) - (Tonye Jack)
+- Deleted .github/ISSUE_TEMPLATE/bug_report.md ([f7d9b33](https://github.com/tj-actions/semver-diff/commit/f7d9b33489db11dedf5d721a060e906d6fccafc5)) - (Tonye Jack)
+
+## 🔄 Update
+
+- Update entrypoint.sh ([672cfca](https://github.com/tj-actions/semver-diff/commit/672cfca0f3dbb29d84628c69076444d3893719d4)) - (Tonye Jack)
+- Update README.md ([7a3aa36](https://github.com/tj-actions/semver-diff/commit/7a3aa3686a22ab4f8fbe4853c2d30f1e76fb0344)) - (Tonye Jack)
+- Update dependency alpine to v3.15.1
+ ([8ed6024](https://github.com/tj-actions/semver-diff/commit/8ed602464fcca7205f3d8812b5794dc02e5964bb)) - (Renovate Bot)
+- Update tj-actions/github-changelog-generator action to v1.13
+ ([d086da7](https://github.com/tj-actions/semver-diff/commit/d086da7a2d90580c5ba03b626423522d4e6dac1b)) - (Renovate Bot)
+- Update tj-actions/verify-changed-files action to v9
+ ([f538bf9](https://github.com/tj-actions/semver-diff/commit/f538bf9943cb6a34cad28bd2a8e40445f6a547da)) - (Renovate Bot)
+- Update codacy/codacy-analysis-cli-action action to v4.0.2
+ ([0edb769](https://github.com/tj-actions/semver-diff/commit/0edb769d205634e473dc4d9c0b377c32adb2446c)) - (Renovate Bot)
+- Update codacy/codacy-analysis-cli-action action to v4.0.1
+ ([744d8f6](https://github.com/tj-actions/semver-diff/commit/744d8f662ae2e25ec3465b424a1898f82149436b)) - (Renovate Bot)
+- Update actions/checkout action
+ ([66f12c9](https://github.com/tj-actions/semver-diff/commit/66f12c903bdecd44ae3c625fa63fd9d4ea0e1840)) - (Renovate Bot)
+- Update tj-actions/github-changelog-generator action to v1.12
+ ([b329c4a](https://github.com/tj-actions/semver-diff/commit/b329c4ae3433231f10ec3f04ddbf5fdafadf3bdb)) - (Renovate Bot)
+- Updated .github/workflows/greetings.yml ([d43101e](https://github.com/tj-actions/semver-diff/commit/d43101e14fb6cf4bcdb90974e4cbfdd506fde88b)) - (Tonye Jack)
+- Updated .github/workflows/greetings.yml ([d8f10c1](https://github.com/tj-actions/semver-diff/commit/d8f10c19a1e5446c71889cf543fd562b0d65c21a)) - (Tonye Jack)
+- Update tj-actions/remark action to v2.3
+ ([9ce99bb](https://github.com/tj-actions/semver-diff/commit/9ce99bb82b9f33605fae919345fbfc9f1faae289)) - (Renovate Bot)
+- Update tj-actions/remark action to v2
+ ([b927cee](https://github.com/tj-actions/semver-diff/commit/b927cee9d5a797014af6ebf2652df96cd2426d62)) - (Renovate Bot)
+- Update tj-actions/github-changelog-generator action to v1.11
+ ([e9b8f5c](https://github.com/tj-actions/semver-diff/commit/e9b8f5c2f310736d542187f584925c7d97a67189)) - (Renovate Bot)
+- Update tj-actions/github-changelog-generator action to v1.10
+ ([be95b22](https://github.com/tj-actions/semver-diff/commit/be95b224098b5ed6a5593c9b6abcb2c6b3a3d19e)) - (Renovate Bot)
+- Update alpine Docker tag to v3.15.0
+ ([fe2e8c0](https://github.com/tj-actions/semver-diff/commit/fe2e8c0b872bd7d8bbb7c73a93bb4d31ffcb1dc8)) - (Renovate Bot)
+- Updated .github/workflows/auto-merge.yml ([1233e35](https://github.com/tj-actions/semver-diff/commit/1233e354a57fe842fc67fbba1519013e58d99c6e)) - (Tonye Jack)
+- Update alpine Docker tag to v3.14.3
+ ([f88ead4](https://github.com/tj-actions/semver-diff/commit/f88ead433e993b9dc842138f4b8bea86b10d37d3)) - (Renovate Bot)
+- Updated README.md
+ ([4fd663d](https://github.com/tj-actions/semver-diff/commit/4fd663d7d59d662d4a86fc4420ec814f889e302f)) - (jackton1)
+- Update actions/checkout action to v2.4.0
+ ([728199d](https://github.com/tj-actions/semver-diff/commit/728199d407a33ed6f7099749fd3194d88ca444e8)) - (Renovate Bot)
+- Updated .github/ISSUE_TEMPLATE/feature_request.yaml ([36c04ee](https://github.com/tj-actions/semver-diff/commit/36c04ee3a20e6ced95d9f46425bfc6c39309972e)) - (Tonye Jack)
+- Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([34eda2e](https://github.com/tj-actions/semver-diff/commit/34eda2e9a7fceaba40d64e65d0394c30a71e8f50)) - (Tonye Jack)
+- Updated renovate.json ([e245eb4](https://github.com/tj-actions/semver-diff/commit/e245eb480e8aa4f3303947dc2b56b20f1e435d7e)) - (Tonye Jack)
+- Updated renovate.json ([555c9b2](https://github.com/tj-actions/semver-diff/commit/555c9b2236de200dbeae30d69ac0973d6b35752b)) - (Tonye Jack)
+- Update actions/checkout action to v2.3.5
+ ([031997e](https://github.com/tj-actions/semver-diff/commit/031997e900c9d44118cee61413e6b02fc20faa75)) - (Renovate Bot)
+- Updated README.md
+ ([c370a4e](https://github.com/tj-actions/semver-diff/commit/c370a4e3924c2158a01d0204034578776bdc7b3b)) - (jackton1)
+- Update tj-actions/verify-changed-files action to v8
+ ([290d93d](https://github.com/tj-actions/semver-diff/commit/290d93ddda492fdd107151080c115a63c17f7e52)) - (Renovate Bot)
+- Update pascalgn/automerge-action action to v0.14.3
+ ([96981b2](https://github.com/tj-actions/semver-diff/commit/96981b2f8fd04e27a3d664ad4825c7ee32ced55d)) - (Renovate Bot)
+- Update alpine Docker tag to v3.14.2
+ ([fdf3ce5](https://github.com/tj-actions/semver-diff/commit/fdf3ce5d7bafe2369117eac0af395ce4d507cdd1)) - (Renovate Bot)
+- Update tj-actions/remark action to v1.7
+ ([db93314](https://github.com/tj-actions/semver-diff/commit/db933142e61310782c6923f8adbd2d0ad8b4cf35)) - (Renovate Bot)
+- Update alpine Docker tag to v3.14.1
+ ([ef0829b](https://github.com/tj-actions/semver-diff/commit/ef0829bec01719b823b815600e6190ae343e328c)) - (Renovate Bot)
+- Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([dd16244](https://github.com/tj-actions/semver-diff/commit/dd1624414c741ac905aacd906069dfc4f6143f64)) - (Tonye Jack)
+- Update README.md ([996bb86](https://github.com/tj-actions/semver-diff/commit/996bb861c256a86cc3a87a6a22e4625677c5d176)) - (Tonye Jack)
+- Updated README.md
+ ([93a83e2](https://github.com/tj-actions/semver-diff/commit/93a83e200f3c8dfa295df069a46ab464c151e70c)) - (jackton1)
+- Update codacy/codacy-analysis-cli-action action to v4
+ ([e4e6234](https://github.com/tj-actions/semver-diff/commit/e4e623435c7b772e70d427241a85186f99c1736a)) - (Renovate Bot)
+- Update README.md ([a2d6f77](https://github.com/tj-actions/semver-diff/commit/a2d6f77e3fc3a804c91486966cd0f8d189b5547e)) - (Tonye Jack)
+- Update README.md ([99aa7e7](https://github.com/tj-actions/semver-diff/commit/99aa7e7afc1ef4e94b90e16f9d5e69f5e4b111d8)) - (Tonye Jack)
+- Update codacy/codacy-analysis-cli-action action to v3
+ ([bbc7e2c](https://github.com/tj-actions/semver-diff/commit/bbc7e2c2420bc400c6a7e8b12f7a98a9c4757018)) - (Renovate Bot)
+- Updated .github/workflows/codacy-analysis.yml ([953210d](https://github.com/tj-actions/semver-diff/commit/953210dbab0a72abe59d7f2c6405fb4e14b51042)) - (Tonye Jack)
+- Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([5c82e57](https://github.com/tj-actions/semver-diff/commit/5c82e57ecb6670bfc8ab394cafa04e5efd9c70ac)) - (Tonye Jack)
+- Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([da834c4](https://github.com/tj-actions/semver-diff/commit/da834c491bb49375cc3e6ffd8a02150d43ea1c53)) - (Tonye Jack)
+- Update tj-actions/verify-changed-files action to v7
+ ([8d67b12](https://github.com/tj-actions/semver-diff/commit/8d67b128723897da50b7caf4014fb9af22a4b560)) - (Renovate Bot)
+- Update alpine Docker tag to v3.14.0
+ ([9e87f4e](https://github.com/tj-actions/semver-diff/commit/9e87f4ebc193deba39946a278f0ba39b7344bb17)) - (Renovate Bot)
+- Updated README.md
+ ([2926b12](https://github.com/tj-actions/semver-diff/commit/2926b12d2fb6d5f8dd9a83bf8e6cc8d9f03254e1)) - (jackton1)
+- Update README.md ([2df1238](https://github.com/tj-actions/semver-diff/commit/2df1238fb953b8ad54e2927e85543b9b4470ea0a)) - (Tonye Jack)
+- Update README.md ([7a69033](https://github.com/tj-actions/semver-diff/commit/7a6903382f21753c039aa675cbbcee297dc74c63)) - (Tonye Jack)
+- Update tj-actions/sync-release-version action to v8.7
+ ([c4fc545](https://github.com/tj-actions/semver-diff/commit/c4fc54544537715cd4ad7443f0839584966a4781)) - (Renovate Bot)
+- Updated .github/workflows/auto-merge.yml ([da0ebdd](https://github.com/tj-actions/semver-diff/commit/da0ebdd06c019af3dfaad7a505593cf624158ec7)) - (Tonye Jack)
+- Updated .github/workflows/auto-merge.yml ([02f1fde](https://github.com/tj-actions/semver-diff/commit/02f1fdedf7bed1b7bbf652d833a8fadea6178201)) - (Tonye Jack)
+- Updated .github/workflows/auto-approve.yml ([47dc23f](https://github.com/tj-actions/semver-diff/commit/47dc23f338e3acf88a0f8af9c2b93429c94a9589)) - (Tonye Jack)
+- Update README.md ([23352a1](https://github.com/tj-actions/semver-diff/commit/23352a1cd1fb4b287b1ef967ef963d25eabe4481)) - (Tonye Jack)
+- Updated renovate.json ([c2ff653](https://github.com/tj-actions/semver-diff/commit/c2ff6538d7ced173f0ae19ee2646e0e12df1f232)) - (Tonye Jack)
+- Updated .github/workflows/auto-approve.yml ([c973991](https://github.com/tj-actions/semver-diff/commit/c9739919244c9692dc6a69b74502bf7aef11cd0b)) - (Tonye Jack)
+- Update entrypoint.sh ([4c7e909](https://github.com/tj-actions/semver-diff/commit/4c7e9095a9fa5c6bf9ee2cad9c63b2afe69216c2)) - (Tonye Jack)
+- Update README.md ([f30a7b1](https://github.com/tj-actions/semver-diff/commit/f30a7b18fcb307137c5e9a481e6567210405a266)) - (Tonye Jack)
+- Update README.md ([018a97d](https://github.com/tj-actions/semver-diff/commit/018a97db3b7ddb76fe02b69febe72ade3d5f899c)) - (Tonye Jack)
+
+## 📝 Other
+
+- PR [#26](https://github.com/tj-actions/semver-diff/pull/26): README.md ([94374ad](https://github.com/tj-actions/semver-diff/commit/94374adeb155a29ff794db99fdbf503a3e52d654)) - (Tonye Jack)
+- PR [#23](https://github.com/tj-actions/semver-diff/pull/23): README.md ([98cbd65](https://github.com/tj-actions/semver-diff/commit/98cbd652d62a7a6c42d8494555b4de5e5524b051)) - (Tonye Jack)
+- PR [#16](https://github.com/tj-actions/semver-diff/pull/16): README.md ([f54fd7f](https://github.com/tj-actions/semver-diff/commit/f54fd7f184a9716dcb7b5caa0959895b4d36abc9)) - (Tonye Jack)
+- PR [#11](https://github.com/tj-actions/semver-diff/pull/11): ([e1e8f45](https://github.com/tj-actions/semver-diff/commit/e1e8f45077cf06fe581a8cc2981e64295fb81b99)) - (Tonye Jack)
+- PR [#8](https://github.com/tj-actions/semver-diff/pull/8): ([e0712dd](https://github.com/tj-actions/semver-diff/commit/e0712ddc17f4084f1cfa8d9ec072194b821714d8)) - (Tonye Jack)
+
+## ⬆️ Upgrades
+
+- Upgraded from v1.1.3 → v1.2.0
+ ([5d57174](https://github.com/tj-actions/semver-diff/commit/5d57174010babbf75a8569f2dae0a4c1fb54141d)) - (jackton1)
+
+# [1.2.0](https://github.com/tj-actions/semver-diff/compare/v1.1.3...v1.2.0) - (2021-05-24)
+
+## 🔄 Update
+
+- Update README.md ([bada88a](https://github.com/tj-actions/semver-diff/commit/bada88a61c0228b5f843d38721bd321d2bd0fc23)) - (Tonye Jack)
+- Update sync-release-version.yml ([b20f76c](https://github.com/tj-actions/semver-diff/commit/b20f76c14f32e19f2129ed1873680fef479606d9)) - (Tonye Jack)
+- Update action.yml ([3cd4396](https://github.com/tj-actions/semver-diff/commit/3cd43961a462c578ad9929e421a13f5b95bbebf0)) - (Tonye Jack)
+- Update entrypoint.sh ([91c5de6](https://github.com/tj-actions/semver-diff/commit/91c5de6b546e9a3a832d45ce4b78d684da772196)) - (Tonye Jack)
+
+## 📝 Other
+
+- PR [#7](https://github.com/tj-actions/semver-diff/pull/7): ([c2e85f9](https://github.com/tj-actions/semver-diff/commit/c2e85f9fe6717c38d7d62ef30ae810cb74c8b190)) - (Tonye Jack)
+
+## ⬆️ Upgrades
+
+- Upgraded from v1.1.2 -> v1.1.3
+ ([5dcc6ec](https://github.com/tj-actions/semver-diff/commit/5dcc6ec29aa4649de7b2ec7df87e955f8361fe5b)) - (jackton1)
+
+# [1.1.3](https://github.com/tj-actions/semver-diff/compare/v1.1.2...v1.1.3) - (2021-05-23)
+
+## 🔄 Update
+
+- Update README.md ([7e1343f](https://github.com/tj-actions/semver-diff/commit/7e1343f59544cce2c85abacfaed494af3cfd6905)) - (Tonye Jack)
+
+## 📝 Other
+
+- PR [#6](https://github.com/tj-actions/semver-diff/pull/6): ([8af9ecf](https://github.com/tj-actions/semver-diff/commit/8af9ecf6697f8d401db3a1d640713c3412c2f09e)) - (Tonye Jack)
+- PR [#5](https://github.com/tj-actions/semver-diff/pull/5): ([3b516f7](https://github.com/tj-actions/semver-diff/commit/3b516f722971e336298f74c1130241bd5e7cff07)) - (Tonye Jack)
+
+## ⬆️ Upgrades
+
+- Upgraded from v1.1 -> v1.1.2
+ ([495ad52](https://github.com/tj-actions/semver-diff/commit/495ad5211451361e72ca98b75f50d456bb0bf0b5)) - (jackton1)
+- Upgraded from v1 -> v1.1
+ ([7135981](https://github.com/tj-actions/semver-diff/commit/7135981e0089aec0af2ca2615e125943cd9ecc6b)) - (jackton1)
+
+# [1.1.2](https://github.com/tj-actions/semver-diff/compare/v1.1...v1.1.2) - (2021-05-23)
-**Merged pull requests:**
+## 🔄 Update
-- chore: upgrade semver tool [\#62](https://github.com/tj-actions/semver-diff/pull/62) ([jackton1](https://github.com/jackton1))
-- Update tj-actions/github-changelog-generator action to v1.15 [\#61](https://github.com/tj-actions/semver-diff/pull/61) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/verify-changed-files action to v11 [\#60](https://github.com/tj-actions/semver-diff/pull/60) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/github-changelog-generator action to v1.14 [\#59](https://github.com/tj-actions/semver-diff/pull/59) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/verify-changed-files action to v10 [\#58](https://github.com/tj-actions/semver-diff/pull/58) ([renovate[bot]](https://github.com/apps/renovate))
-- Update codacy/codacy-analysis-cli-action action to v4.1.0 [\#57](https://github.com/tj-actions/semver-diff/pull/57) ([renovate[bot]](https://github.com/apps/renovate))
-- Upgraded to v2.0.0 [\#56](https://github.com/tj-actions/semver-diff/pull/56) ([jackton1](https://github.com/jackton1))
+- Update entrypoint.sh ([744fb5d](https://github.com/tj-actions/semver-diff/commit/744fb5d94cdc524cace7307569b9ddff36ba6cec)) - (Tonye Jack)
-## [v2.0.0](https://github.com/tj-actions/semver-diff/tree/v2.0.0) (2022-06-12)
+# [1.1](https://github.com/tj-actions/semver-diff/compare/v1...v1.1) - (2021-05-23)
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v1.2.1...v2.0.0)
+## 🔄 Update
-**Merged pull requests:**
+- Update entrypoint.sh ([229a223](https://github.com/tj-actions/semver-diff/commit/229a2236f80af648d31b107d23606c561e62bec7)) - (Tonye Jack)
+- Update sync-release-version.yml ([7596522](https://github.com/tj-actions/semver-diff/commit/75965226226839c62aeb5286bf46cc1130e9962e)) - (Tonye Jack)
-- Bump tj-actions/sync-release-version from 8.7 to 11 [\#55](https://github.com/tj-actions/semver-diff/pull/55) ([dependabot[bot]](https://github.com/apps/dependabot))
-- Bump tj-actions/remark from 2.3 to 3 [\#54](https://github.com/tj-actions/semver-diff/pull/54) ([dependabot[bot]](https://github.com/apps/dependabot))
-- feat: switch to use a composite action [\#53](https://github.com/tj-actions/semver-diff/pull/53) ([jackton1](https://github.com/jackton1))
-- Update dependency alpine to v3.16.0 [\#52](https://github.com/tj-actions/semver-diff/pull/52) ([renovate[bot]](https://github.com/apps/renovate))
-- Update pascalgn/automerge-action action to v0.15.3 [\#51](https://github.com/tj-actions/semver-diff/pull/51) ([renovate[bot]](https://github.com/apps/renovate))
-- Update cirrus-actions/rebase action to v1.7 [\#50](https://github.com/tj-actions/semver-diff/pull/50) ([renovate[bot]](https://github.com/apps/renovate))
-- Update github/codeql-action action to v2 [\#49](https://github.com/tj-actions/semver-diff/pull/49) ([renovate[bot]](https://github.com/apps/renovate))
-- Update actions/checkout action to v3.0.2 [\#48](https://github.com/tj-actions/semver-diff/pull/48) ([renovate[bot]](https://github.com/apps/renovate))
-- Update cirrus-actions/rebase action to v1.6 [\#47](https://github.com/tj-actions/semver-diff/pull/47) ([renovate[bot]](https://github.com/apps/renovate))
-- Update actions/checkout action to v3.0.1 [\#46](https://github.com/tj-actions/semver-diff/pull/46) ([renovate[bot]](https://github.com/apps/renovate))
-- Update dependency alpine to v3.15.4 [\#45](https://github.com/tj-actions/semver-diff/pull/45) ([renovate[bot]](https://github.com/apps/renovate))
-- Update dependency alpine to v3.15.3 [\#44](https://github.com/tj-actions/semver-diff/pull/44) ([renovate[bot]](https://github.com/apps/renovate))
-- Update pascalgn/automerge-action action to v0.15.2 [\#43](https://github.com/tj-actions/semver-diff/pull/43) ([renovate[bot]](https://github.com/apps/renovate))
-- Update dependency alpine to v3.15.2 [\#42](https://github.com/tj-actions/semver-diff/pull/42) ([renovate[bot]](https://github.com/apps/renovate))
-- Update peter-evans/create-pull-request action to v4 [\#41](https://github.com/tj-actions/semver-diff/pull/41) ([renovate[bot]](https://github.com/apps/renovate))
-- Upgraded to v1.2.1 [\#40](https://github.com/tj-actions/semver-diff/pull/40) ([jackton1](https://github.com/jackton1))
+## 📝 Other
-## [v1.2.1](https://github.com/tj-actions/semver-diff/tree/v1.2.1) (2022-03-23)
+- PR [#4](https://github.com/tj-actions/semver-diff/pull/4): ([ec19b61](https://github.com/tj-actions/semver-diff/commit/ec19b6169c85731bfc34e7ceed10d7f67bd945ac)) - (Tonye Jack)
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v1.2.0...v1.2.1)
+## ⬆️ Upgrades
-**Merged pull requests:**
+- Upgraded from ->
+ ([5ad94b3](https://github.com/tj-actions/semver-diff/commit/5ad94b37adafba005216728dfba71208ebf89164)) - (jackton1)
-- Update dependency alpine to v3.15.1 [\#39](https://github.com/tj-actions/semver-diff/pull/39) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/github-changelog-generator action to v1.13 [\#38](https://github.com/tj-actions/semver-diff/pull/38) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/verify-changed-files action to v9 [\#37](https://github.com/tj-actions/semver-diff/pull/37) ([renovate[bot]](https://github.com/apps/renovate))
-- Update codacy/codacy-analysis-cli-action action to v4.0.2 [\#36](https://github.com/tj-actions/semver-diff/pull/36) ([renovate[bot]](https://github.com/apps/renovate))
-- Update codacy/codacy-analysis-cli-action action to v4.0.1 [\#35](https://github.com/tj-actions/semver-diff/pull/35) ([renovate[bot]](https://github.com/apps/renovate))
-- Update actions/checkout action [\#34](https://github.com/tj-actions/semver-diff/pull/34) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/github-changelog-generator action to v1.12 [\#33](https://github.com/tj-actions/semver-diff/pull/33) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/remark action to v2.3 [\#32](https://github.com/tj-actions/semver-diff/pull/32) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/remark action to v2 [\#31](https://github.com/tj-actions/semver-diff/pull/31) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/github-changelog-generator action to v1.11 [\#30](https://github.com/tj-actions/semver-diff/pull/30) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/github-changelog-generator action to v1.10 [\#29](https://github.com/tj-actions/semver-diff/pull/29) ([renovate[bot]](https://github.com/apps/renovate))
-- Update alpine Docker tag to v3.15.0 [\#28](https://github.com/tj-actions/semver-diff/pull/28) ([renovate[bot]](https://github.com/apps/renovate))
-- Update alpine Docker tag to v3.14.3 [\#27](https://github.com/tj-actions/semver-diff/pull/27) ([renovate[bot]](https://github.com/apps/renovate))
-- Updated README.md [\#26](https://github.com/tj-actions/semver-diff/pull/26) ([jackton1](https://github.com/jackton1))
-- Update actions/checkout action to v2.4.0 [\#25](https://github.com/tj-actions/semver-diff/pull/25) ([renovate[bot]](https://github.com/apps/renovate))
-- Update actions/checkout action to v2.3.5 [\#24](https://github.com/tj-actions/semver-diff/pull/24) ([renovate[bot]](https://github.com/apps/renovate))
-- Updated README.md [\#23](https://github.com/tj-actions/semver-diff/pull/23) ([jackton1](https://github.com/jackton1))
-- Update tj-actions/verify-changed-files action to v8 [\#22](https://github.com/tj-actions/semver-diff/pull/22) ([renovate[bot]](https://github.com/apps/renovate))
-- Update pascalgn/automerge-action action to v0.14.3 [\#21](https://github.com/tj-actions/semver-diff/pull/21) ([renovate[bot]](https://github.com/apps/renovate))
-- Update alpine Docker tag to v3.14.2 [\#20](https://github.com/tj-actions/semver-diff/pull/20) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/remark action to v1.7 [\#19](https://github.com/tj-actions/semver-diff/pull/19) ([renovate[bot]](https://github.com/apps/renovate))
-- Update alpine Docker tag to v3.14.1 [\#18](https://github.com/tj-actions/semver-diff/pull/18) ([renovate[bot]](https://github.com/apps/renovate))
-- Update codacy/codacy-analysis-cli-action action to v4 [\#17](https://github.com/tj-actions/semver-diff/pull/17) ([renovate[bot]](https://github.com/apps/renovate))
-- Updated README.md [\#16](https://github.com/tj-actions/semver-diff/pull/16) ([jackton1](https://github.com/jackton1))
-- Update codacy/codacy-analysis-cli-action action to v3 [\#15](https://github.com/tj-actions/semver-diff/pull/15) ([renovate[bot]](https://github.com/apps/renovate))
-- Update tj-actions/verify-changed-files action to v7 [\#13](https://github.com/tj-actions/semver-diff/pull/13) ([renovate[bot]](https://github.com/apps/renovate))
-- Update alpine Docker tag to v3.14.0 [\#12](https://github.com/tj-actions/semver-diff/pull/12) ([renovate[bot]](https://github.com/apps/renovate))
-- Updated README.md [\#11](https://github.com/tj-actions/semver-diff/pull/11) ([jackton1](https://github.com/jackton1))
-- Update tj-actions/sync-release-version action to v8.7 [\#10](https://github.com/tj-actions/semver-diff/pull/10) ([renovate[bot]](https://github.com/apps/renovate))
-- Upgraded to v1.2.0 [\#8](https://github.com/tj-actions/semver-diff/pull/8) ([jackton1](https://github.com/jackton1))
+# [1](https://github.com/tj-actions/semver-diff/tree/v1) - (2021-05-23)
-## [v1.2.0](https://github.com/tj-actions/semver-diff/tree/v1.2.0) (2021-05-24)
-
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v1.1.3...v1.2.0)
-
-**Merged pull requests:**
-
-- Upgraded to v1.1.3 [\#7](https://github.com/tj-actions/semver-diff/pull/7) ([jackton1](https://github.com/jackton1))
+## 🎉 Initial Commit
-## [v1.1.3](https://github.com/tj-actions/semver-diff/tree/v1.1.3) (2021-05-23)
+- Initial commit
+ ([62c0cb9](https://github.com/tj-actions/semver-diff/commit/62c0cb90c04f2f7aba4ec0d6ec7f801527c24e03)) - (Tonye Jack)
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v1.1.2...v1.1.3)
+## 📝 Rename
-**Merged pull requests:**
+- Renamed inputs and outputs.
+ ([3798c5a](https://github.com/tj-actions/semver-diff/commit/3798c5a354660e04645fb4038686704c37309bfd)) - (Tonye Jack)
-- Upgraded to v1.1.2 [\#6](https://github.com/tj-actions/semver-diff/pull/6) ([jackton1](https://github.com/jackton1))
-- Upgraded to v1.1 [\#5](https://github.com/tj-actions/semver-diff/pull/5) ([jackton1](https://github.com/jackton1))
+## 🔄 Update
-## [v1.1.2](https://github.com/tj-actions/semver-diff/tree/v1.1.2) (2021-05-23)
+- Update cirrus-actions/rebase action to v1.5
+ ([3ba2e7b](https://github.com/tj-actions/semver-diff/commit/3ba2e7b639772eb4658cb1f7aa70dae381a6d8d4)) - (Renovate Bot)
+- Update tj-actions/github-changelog-generator action to v1.8
+ ([5036f54](https://github.com/tj-actions/semver-diff/commit/5036f54c9ec46e19b275528a8291f7dc25caa5ac)) - (Renovate Bot)
+- Update README.md ([d148b33](https://github.com/tj-actions/semver-diff/commit/d148b33f1d103f50365e8bff4643816f42783547)) - (Tonye Jack)
+- Update README.md ([9229dac](https://github.com/tj-actions/semver-diff/commit/9229dacfc8ca7f88fa4bb4ce526d86bdbf60f666)) - (Tonye Jack)
+- Update README.md ([30c416e](https://github.com/tj-actions/semver-diff/commit/30c416e51bef5e8877d218ab55c581c9d63aa0e2)) - (Tonye Jack)
+- Update README.md ([11d7931](https://github.com/tj-actions/semver-diff/commit/11d7931987f8a973037c23bc38796247fc8854ab)) - (Tonye Jack)
+- Updated the test
+ ([ba93000](https://github.com/tj-actions/semver-diff/commit/ba930007f5b1091668dc05533e1b6b448efd9137)) - (Tonye Jack)
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v1.1...v1.1.2)
+## 📝 Other
-## [v1.1](https://github.com/tj-actions/semver-diff/tree/v1.1) (2021-05-23)
+- PR [#1](https://github.com/tj-actions/semver-diff/pull/1): ([4d576fd](https://github.com/tj-actions/semver-diff/commit/4d576fd4369024bd9672cb938b99192895918487)) - (Tonye Jack)
+- PR [#2](https://github.com/tj-actions/semver-diff/pull/2): ([205d707](https://github.com/tj-actions/semver-diff/commit/205d707d77f90495cb4d0426f38353e1c322e412)) - (Tonye Jack)
+- Merge branch 'main' of github.com:tj-actions/semver-diff into main
+ ([803130f](https://github.com/tj-actions/semver-diff/commit/803130f2933e37b1100d7e653b3787302500dc87)) - (Tonye Jack)
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/v1...v1.1)
-
-**Merged pull requests:**
-
-- Upgraded to v1 [\#4](https://github.com/tj-actions/semver-diff/pull/4) ([jackton1](https://github.com/jackton1))
-
-## [v1](https://github.com/tj-actions/semver-diff/tree/v1) (2021-05-23)
-
-[Full Changelog](https://github.com/tj-actions/semver-diff/compare/62c0cb90c04f2f7aba4ec0d6ec7f801527c24e03...v1)
-
-**Merged pull requests:**
-
-- Update tj-actions/github-changelog-generator action to v1.8 [\#2](https://github.com/tj-actions/semver-diff/pull/2) ([renovate[bot]](https://github.com/apps/renovate))
-- Update cirrus-actions/rebase action to v1.5 [\#1](https://github.com/tj-actions/semver-diff/pull/1) ([renovate[bot]](https://github.com/apps/renovate))
-
-
-
-\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
+
diff --git a/README.md b/README.md
index aefbe6d..6b5a0fc 100644
--- a/README.md
+++ b/README.md
@@ -28,10 +28,10 @@ jobs:
runs-on: ubuntu-latest
name: semver-diff
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Run semver-diff
id: semver-diff
- uses: tj-actions/semver-diff@v2
+ uses: tj-actions/semver-diff@v3
- name: Show release type
run: |
echo "Release type: ${{ steps.semver-diff.outputs.release_type }}"
@@ -51,13 +51,13 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run semver-diff
id: semver-diff
- uses: tj-actions/semver-diff@v2
+ uses: tj-actions/semver-diff@v3
- name: Set up Python
uses: actions/setup-python@v2
@@ -74,7 +74,7 @@ jobs:
- name: bumpversion
run: |
- bump2version PART="${{ steps.semver-diff.outputs.release_type }}"
+ bump2version "${{ steps.semver-diff.outputs.release_type }}"
git switch -c main
- name: Build and publish to PyPi
@@ -91,9 +91,9 @@ jobs:
-| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION |
-|----------------------|--------|----------|-----------|-------------------------------------------------------------------|
-| initial\_release\_type | string | true | `"patch"` | Initial release type returned when there
are no existing tags. |
+| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION |
+|----------------------------------------------------------------------------------------------|--------|----------|-----------|---------------------------------------------------------------------|
+| [initial\_release\_type](#input_initial_release_type) | string | true | `"patch"` | Initial release type returned when
there are no existing tags. |
@@ -101,11 +101,11 @@ jobs:
-| OUTPUT | TYPE | DESCRIPTION |
-|--------------|--------|---------------------------------------------------------------------------------------------------------|
-| new\_version | string | The current project version |
-| old\_version | string | The previous project version |
-| release\_type | string | The difference between two versions by
the release type (major, minor, patch,
prerelease, build) |
+| OUTPUT | TYPE | DESCRIPTION |
+|------------------------------------------------------------------------|--------|-----------------------------------------------------------------------------------------------------------------|
+| [new\_version](#output_new_version) | string | The current project version |
+| [old\_version](#output_old_version) | string | The previous project version |
+| [release\_type](#output_release_type) | string | The difference between two versions
by the release type (`major`, `minor`, `patch`, `prerelease`, `build`) |
diff --git a/action.yml b/action.yml
index 866fe50..16c57d6 100644
--- a/action.yml
+++ b/action.yml
@@ -9,7 +9,7 @@ inputs:
outputs:
release_type:
- description: 'The difference between two versions by the release type (major, minor, patch, prerelease, build)'
+ description: 'The difference between two versions by the release type (`major`, `minor`, `patch`, `prerelease`, `build`)'
value: ${{ steps.semver.outputs.release_type }}
new_version:
description: 'The current project version'
diff --git a/entrypoint.sh b/entrypoint.sh
index 67e4fcc..f915f57 100755
--- a/entrypoint.sh
+++ b/entrypoint.sh
@@ -17,26 +17,19 @@ CURRENT_TAG=${3:-$(git tag -l --sort=-version:refname "*.*" | grep -v "$NEW_TAG"
if [[ -z $CURRENT_TAG ]]; then
echo "::warning::Initial release detected unable to determine any tag diff."
echo "::warning::Setting release_type to $INPUT_INITIAL_RELEASE_TYPE."
-
- if [[ -z "$GITHUB_OUTPUT" ]]; then
- echo "::set-output name=release_type::$INPUT_INITIAL_RELEASE_TYPE"
- else
- echo "release_type=$INPUT_INITIAL_RELEASE_TYPE" >> "$GITHUB_OUTPUT"
- fi
+ cat <> "$GITHUB_OUTPUT"
+release_type=$INPUT_INITIAL_RELEASE_TYPE
+old_version=$NEW_TAG
+new_version=$NEW_TAG
+EOF
exit 0;
fi
echo "::debug::Calculating diff..."
-PART=$(wget -O - https://raw.githubusercontent.com/fsaintjacques/semver-tool/3.3.0/src/semver | bash -s diff "${CURRENT_TAG//v/}" "${NEW_TAG//v/}")
+PART=$(wget -O - https://raw.githubusercontent.com/fsaintjacques/semver-tool/3.4.0/src/semver | bash -s diff "${CURRENT_TAG//v/}" "${NEW_TAG//v/}")
-if [[ -z "$GITHUB_OUTPUT" ]]; then
- echo "::set-output name=release_type::$PART"
- echo "::set-output name=old_version::$CURRENT_TAG"
- echo "::set-output name=new_version::$NEW_TAG"
-else
- cat <> "$GITHUB_OUTPUT"
+cat <> "$GITHUB_OUTPUT"
release_type=$PART
old_version=$CURRENT_TAG
new_version=$NEW_TAG
EOF
-fi
diff --git a/renovate.json b/renovate.json
index 36d794a..cba201d 100644
--- a/renovate.json
+++ b/renovate.json
@@ -7,7 +7,8 @@
"prConcurrentLimit": 5,
"rebaseWhen": "behind-base-branch",
"addLabels": [
- "dependencies"
+ "dependencies",
+ "merge when passing"
],
"assignees": [
"jackton1"
@@ -19,13 +20,21 @@
"enabled": true,
"automerge": true
},
+ "nvm": {
+ "enabled": false
+ },
"packageRules": [
{
- "matchUpdateTypes": ["minor", "patch", "pin", "digest"],
+ "matchUpdateTypes": [
+ "minor",
+ "patch",
+ "pin",
+ "digest"
+ ],
"automerge": true,
"rebaseWhen": "behind-base-branch",
"addLabels": [
- "automerge"
+ "merge when passing"
]
},
{
@@ -33,10 +42,15 @@
"matchLanguages": [
"docker"
],
- "matchUpdateTypes": ["minor", "patch", "pin", "digest"],
+ "matchUpdateTypes": [
+ "minor",
+ "patch",
+ "pin",
+ "digest"
+ ],
"rebaseWhen": "behind-base-branch",
"addLabels": [
- "automerge"
+ "merge when passing"
],
"automerge": true
}