From 496532ae7606a49dcf90a3f5c8b13b2b1ccc0b9b Mon Sep 17 00:00:00 2001 From: Roger Barker Date: Tue, 4 Feb 2025 13:53:51 -0600 Subject: [PATCH] chore: Use forked version of git-semver Signed-off-by: Roger Barker --- README.md | 1 + action.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a53e297..07b81c0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # setup-git-semver A GitHub Action to set up the [git-semver](https://github.com/PSanetra/git-semver) tool in your GitHub workflows. This action installs and configures `git-semver` for versioning and semantic versioning tasks, allowing you to use it seamlessly in your CI/CD pipeline. +The latest version uses [andrewb1269hg/git-semver](https://github.com/andrewb1269hg/git-semver) ## Usage diff --git a/action.yml b/action.yml index c5fcc14..1dfc1e1 100644 --- a/action.yml +++ b/action.yml @@ -24,7 +24,7 @@ runs: run: | if [[ "${{ inputs.version }}" == "latest" ]]; then # clone the latest version - git clone https://github.com/PSanetra/git-semver.git + git clone https://github.com/andrewb1269hg/git-semver.git else # clone the specified version git clone --branch ${{ inputs.version }} https://github.com/PSanetra/git-semver.git