Skip to content

Commit

Permalink
workflows/*.yml: Update patch version of .NET 6 & .NET 7
Browse files Browse the repository at this point in the history
Resolves: No entry
  • Loading branch information
shinji-san committed Nov 9, 2023
1 parent 2ab9dac commit cba5cba
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/[email protected]
with:
dotnet-version: 6.0.414
dotnet-version: 6.0.416

- name: Setup .NET 7
uses: actions/[email protected]
with:
dotnet-version: 7.0.401
dotnet-version: 7.0.403

- name: .NET Core SxS
run: |
rsync -a ${DOTNET_ROOT/7.0.401/6.0.414}/* $DOTNET_ROOT/
rsync -a ${DOTNET_ROOT/7.0.403/6.0.416}/* $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.414', '7.0.401' ]
dotnet: [ '6.0.416', '7.0.403' ]
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.414'
if: matrix.dotnet == '6.0.416'
run: dotnet build --configuration Release SecretSharingDotNet6.sln
- name: Test with dotnet SDK v6.0
if: matrix.dotnet == '6.0.414'
if: matrix.dotnet == '6.0.416'
run: dotnet test --configuration Release SecretSharingDotNet6.sln
- name: Build with dotnet SDK v7.0
if: matrix.dotnet == '7.0.401'
if: matrix.dotnet == '7.0.403'
run: dotnet build --configuration Release SecretSharingDotNet7.sln
- name: Test with dotnet SDK v7.0
if: matrix.dotnet == '7.0.401'
if: matrix.dotnet == '7.0.403'
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/[email protected]
with:
dotnet-version: 6.0.414
dotnet-version: 6.0.416

- name: Setup .NET 7
uses: actions/[email protected]
with:
dotnet-version: 7.0.401
dotnet-version: 7.0.403

- name: .NET Core SxS
run: |
rsync -a ${DOTNET_ROOT/7.0.401/6.0.414}/* $DOTNET_ROOT/
rsync -a ${DOTNET_ROOT/7.0.403/6.0.416}/* $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/[email protected]
with:
dotnet-version: 6.0.414
dotnet-version: 6.0.416

- name: Setup .NET 7
uses: actions/[email protected]
with:
dotnet-version: 7.0.401
dotnet-version: 7.0.403

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

0 comments on commit cba5cba

Please sign in to comment.