diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c03bd2a..b0afe6f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - name: Setup .NET 6 uses: actions/setup-dotnet@v1 with: - dotnet-version: "6.0.x" + dotnet-version: 6.0.x - name: Restore dependencies run: dotnet restore source - name: Build diff --git a/.github/workflows/PreRelease.yml b/.github/workflows/PreRelease.yml index 1e9ff72..e5cf992 100644 --- a/.github/workflows/PreRelease.yml +++ b/.github/workflows/PreRelease.yml @@ -11,10 +11,6 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Setup .NET 5 - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 5.0.x - run: echo "ACTIONS_ALLOW_UNSECURE_COMMANDS=true" >> $GITHUB_ENV - name: Install GitVersion uses: gittools/actions/gitversion/setup@v0.9.7 @@ -24,7 +20,6 @@ jobs: uses: actions/setup-dotnet@v1 with: dotnet-version: "6.0.x" - include-prerelease: true - name: Determine Version id: gitversion uses: gittools/actions/gitversion/execute@v0.9.7 diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 8c1827d..1335718 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -11,10 +11,6 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Setup .NET 5 - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 5.0.x - run: echo "ACTIONS_ALLOW_UNSECURE_COMMANDS=true" >> $GITHUB_ENV - name: Install GitVersion uses: gittools/actions/gitversion/setup@v0.9.7