From 8cc4e7b552ee2582454352c3de470e6efc125d26 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 11 Mar 2023 16:34:23 +0000 Subject: [PATCH] Update gittools/actions action to v0.10.2 --- .github/workflows/close-milestone.yml | 6 +++--- .github/workflows/draft-release.yml | 4 ++-- .github/workflows/update-milestone.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/close-milestone.yml b/.github/workflows/close-milestone.yml index a65391798..f306bae92 100644 --- a/.github/workflows/close-milestone.yml +++ b/.github/workflows/close-milestone.yml @@ -15,18 +15,18 @@ jobs: fetch-depth: 0 - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v0.10.1 + uses: gittools/actions/gitversion/setup@v0.10.2 with: versionSpec: '5.x' - name: Install GitReleaseManager - uses: gittools/actions/gitreleasemanager/setup@v0.10.1 + uses: gittools/actions/gitreleasemanager/setup@v0.10.2 with: versionSpec: '0.11.x' - name: Use GitVersion id: gitversion - uses: gittools/actions/gitversion/execute@v0.10.1 + uses: gittools/actions/gitversion/execute@v0.10.2 # Ensure the milestone exists - name: Create Milestone diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 33c0baa9c..0e53ee19d 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -22,13 +22,13 @@ jobs: run: git fetch --prune - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v0.10.1 + uses: gittools/actions/gitversion/setup@v0.10.2 with: versionSpec: '5.x' - name: Use GitVersion id: gitversion - uses: gittools/actions/gitversion/execute@v0.10.1 + uses: gittools/actions/gitversion/execute@v0.10.2 - name: Create Milestone uses: WyriHaximus/github-action-create-milestone@v1 diff --git a/.github/workflows/update-milestone.yml b/.github/workflows/update-milestone.yml index 4258a9d9d..fd9631acc 100644 --- a/.github/workflows/update-milestone.yml +++ b/.github/workflows/update-milestone.yml @@ -23,20 +23,20 @@ jobs: - name: Install GitVersion if: ${{ github.event.action == 'opened' }} - uses: gittools/actions/gitversion/setup@v0.10.1 + uses: gittools/actions/gitversion/setup@v0.10.2 with: versionSpec: '5.x' - name: Install GitReleaseManager if: ${{ github.event.action == 'opened' }} - uses: gittools/actions/gitreleasemanager/setup@v0.10.1 + uses: gittools/actions/gitreleasemanager/setup@v0.10.2 with: versionSpec: '0.11.x' - name: Use GitVersion if: ${{ github.event.action == 'opened' }} id: gitversion - uses: gittools/actions/gitversion/execute@v0.10.1 + uses: gittools/actions/gitversion/execute@v0.10.2 - name: Create Milestone if: ${{ github.event.action == 'opened' }}