Skip to content

Commit

Permalink
pin to setup-dotnet 1.6.0
Browse files Browse the repository at this point in the history
The current version (1.7.0) fails to install our required versions correctly (see actions/setup-dotnet#128). Pinning to the previous release until that gets fixed.
  • Loading branch information
RomainMuller authored Sep 22, 2020
1 parent f892d40 commit 5bb3177
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
# Set up all of our standard runtimes
- name: Set up .NET 3.1
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v1.6.0
with:
dotnet-version: '3.1.x'
- name: Set up Java 8
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
steps:
# Set up all of our standard runtimes
- name: Set up .NET 3.1
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v1.6.0
with:
dotnet-version: '3.1.x'
- name: Set up Java 8
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
steps:
# Set up all of our standard runtimes (this is matrix-based)
- name: Set up .NET ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v1.6.0
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Set up Java ${{ matrix.java }}
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
steps:
# Set up all of our standard runtimes
- name: Set up .NET 3.1
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v1.6.0
with:
dotnet-version: '3.1.x'
- name: Set up Java 8
Expand Down

0 comments on commit 5bb3177

Please sign in to comment.