Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Commit 47b6d38

Browse files
Update CI scripts
1 parent 90bff7b commit 47b6d38

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/constants.env

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
DOTNET_VERSION_STABLE: '9.0.x'
1+
DOTNET_VERSION_CURRENT_STABLE: '9.0.x'
2+
DOTNET_8_VERSION_STABLE: '8.0.x'
23
DOTNET_VERSION_PREVIEW: ''

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ jobs:
7575
uses: actions/setup-dotnet@v4
7676
with:
7777
dotnet-version: |
78-
${{ env.DOTNET_VERSION_STABLE }}
78+
${{ env.DOTNET_VERSION_CURRENT_STABLE }}
79+
${{ env.DOTNET_8_VERSION_STABLE }}
7980
8081
- name: Restore dependencies
8182
run: dotnet restore

.github/workflows/documentation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ jobs:
4343
uses: actions/setup-dotnet@v4
4444
with:
4545
dotnet-version: |
46-
${{ env.DOTNET_VERSION_STABLE }}
46+
${{ env.DOTNET_VERSION_CURRENT_STABLE }}
47+
${{ env.DOTNET_8_VERSION_STABLE }}
4748
4849
- name: Setup DocFX
4950
run: dotnet tool update -g docfx

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
uses: actions/setup-dotnet@v4
3434
with:
3535
dotnet-version: |
36-
${{ env.DOTNET_VERSION_STABLE }}
36+
${{ env.DOTNET_VERSION_CURRENT_STABLE }}
37+
${{ env.DOTNET_8_VERSION_STABLE }}
3738
3839
- name: Install SonarCloud scanner
3940
if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)