Skip to content

Commit

Permalink
*.yml: Update .NET version to 6.0.414 and 7.0.401
Browse files Browse the repository at this point in the history
The new versions fix the issue #4671:
microsoft/vstest#4671

Resolves: No enty
  • Loading branch information
shinji-san committed Sep 16, 2023
1 parent d35e2e3 commit ed58f22
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ jobs:
- name: Setup .NET 6
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 6.0.413
dotnet-version: 6.0.414

- name: Setup .NET 7
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 7.0.400
dotnet-version: 7.0.401

- name: .NET Core SxS
run: |
rsync -a ${DOTNET_ROOT/7.0.400/6.0.413}/* $DOTNET_ROOT/
rsync -a ${DOTNET_ROOT/7.0.401/6.0.414}/* $DOTNET_ROOT/
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
DOTNET_CLI_TELEMETRY_OPTOUT: true
strategy:
matrix:
dotnet: [ '6.0.413', '7.0.400' ]
dotnet: [ '6.0.414', '7.0.401' ]
name: Dotnet ${{ matrix.dotnet }}

steps:
Expand All @@ -27,14 +27,14 @@ jobs:
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Build with dotnet SDK v6.0
if: matrix.dotnet == '6.0.413'
if: matrix.dotnet == '6.0.414'
run: dotnet build --configuration Release SecretSharingDotNet6.sln
- name: Test with dotnet SDK v6.0
if: matrix.dotnet == '6.0.413'
if: matrix.dotnet == '6.0.414'
run: dotnet test --configuration Release SecretSharingDotNet6.sln
- name: Build with dotnet SDK v7.0
if: matrix.dotnet == '7.0.400'
if: matrix.dotnet == '7.0.401'
run: dotnet build --configuration Release SecretSharingDotNet7.sln
- name: Test with dotnet SDK v7.0
if: matrix.dotnet == '7.0.400'
if: matrix.dotnet == '7.0.401'
run: dotnet test --configuration Release SecretSharingDotNet7.sln
6 changes: 3 additions & 3 deletions .github/workflows/dotnetall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
- name: Setup .NET 6
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 6.0.413
dotnet-version: 6.0.414

- name: Setup .NET 7
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 7.0.400
dotnet-version: 7.0.401

- name: .NET Core SxS
run: |
rsync -a ${DOTNET_ROOT/7.0.400/6.0.413}/* $DOTNET_ROOT/
rsync -a ${DOTNET_ROOT/7.0.401/6.0.414}/* $DOTNET_ROOT/
- name: Restore
run: dotnet restore SecretSharingDotNet.sln
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publishing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
- name: Setup .NET 6
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 6.0.413
dotnet-version: 6.0.414

- name: Setup .NET 7
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 7.0.400
dotnet-version: 7.0.401

- name: .NET Core SxS
run: |
rsync -a ${DOTNET_ROOT/7.0.400/6.0.413}/* $DOTNET_ROOT/
rsync -a ${DOTNET_ROOT/7.0.401/6.0.414}/* $DOTNET_ROOT/
- name: Decrypt large secret
run: ./.github/secrets/decrypt_publisher_snk.sh
Expand Down

0 comments on commit ed58f22

Please sign in to comment.