Skip to content

Commit 96caa76

Browse files
committed
Updated .NET SDK to 7.0.406 for GitHub actions
1 parent 6db0d03 commit 96caa76

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/publish_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Set Build Version
1818
run: |
@@ -26,9 +26,9 @@ jobs:
2626
shell: pwsh
2727

2828
- name: Install .NET Core
29-
uses: actions/setup-dotnet@v3
29+
uses: actions/setup-dotnet@v4
3030
with:
31-
dotnet-version: 7.0.401
31+
dotnet-version: 7.0.406
3232

3333
- name: Add the GitHub source
3434
run: dotnet nuget add source --username USERNAME --password ${{secrets.GITHUB_TOKEN}} --store-password-in-clear-text --name "github.com" "https://nuget.pkg.github.com/fsprojects/index.json"

.github/workflows/publish_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
# This is necessary so that we have the tags.
1717
fetch-depth: 0
@@ -28,9 +28,9 @@ jobs:
2828
shell: pwsh
2929

3030
- name: Install .NET Core
31-
uses: actions/setup-dotnet@v3
31+
uses: actions/setup-dotnet@v4
3232
with:
33-
dotnet-version: 7.0.401
33+
dotnet-version: 7.0.406
3434

3535
- name: Install local tools
3636
run: dotnet tool restore

.github/workflows/pull_request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, windows-latest, macOS-latest]
20-
dotnet: [7.0.401]
20+
dotnet: [7.0.406]
2121
runs-on: ${{ matrix.os }}
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
- name: Setup .NET Core
27-
uses: actions/setup-dotnet@v3
27+
uses: actions/setup-dotnet@v4
2828
with:
2929
dotnet-version: ${{ matrix.dotnet }}
3030

0 commit comments

Comments
 (0)