From cdbd385fc604752359e15f70b1739c0652474d28 Mon Sep 17 00:00:00 2001 From: Gerardo Grignoli Date: Fri, 17 Feb 2023 20:07:28 -0300 Subject: [PATCH] Workaround for GitTools/GitVersion#3351 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e940a5d..950471f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: with: fetch-depth: 0 - name: Install dependencies - run: choco install GitVersion.Portable ilmerge il-repack --confirm --no-progress + run: choco install GitVersion.Portable --version 5.6.11 --confirm --no-progress; choco install il-repack --confirm --no-progress - name: Update project version run: gitversion /l console /output buildserver /updateAssemblyInfo /verbosity minimal - name: Get project version diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 25a12b68..47eeaeb8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: contents: write steps: - name: Install dependencies - run: choco install NuGet.CommandLine GitVersion.Portable wixtoolset --confirm --no-progress + run: choco install GitVersion.Portable --version 5.6.11 --confirm --no-progress; choco install NuGet.CommandLine GitVersion.Portable wixtoolset --confirm --no-progress - uses: actions/checkout@v2 with: fetch-depth: 0