From 4090f70509f5bab79749e3f5e1bab6481c62d8bd Mon Sep 17 00:00:00 2001 From: Artur Stolear Date: Fri, 24 Jan 2020 15:07:16 +0200 Subject: [PATCH] updated README with the new actions paths --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ac6128e05..c63c34c75 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ GitHub Actions that allow to install and use the GitVersion and GitReleaseManage ## Usage -See [setup](setup-gitversion/action.yml) and [usage](execute-gitversion/action.yml) +See [setup](gitversion/setup) and [usage](gitversion/execute/action.yml) ## Dependency @@ -32,12 +32,12 @@ Basic: - name: Fetch all history for all tags and branches run: git fetch --prune --unshallow - name: Install GitVersion - uses: gittools/actions/setup-gitversion@v0.3 + uses: gittools/actions/gitversion/setup@v0.6 with: versionSpec: '5.1.x' - name: Use GitVersion id: gitversion # step id used as reference for output values - uses: gittools/actions/execute-gitversion@v0.3 + uses: gittools/actions/gitversion/execute@v0.6 - run: | echo "Major: ${{ steps.gitversion.outputs.major }}" echo "Minor: ${{ steps.gitversion.outputs.minor }}"