Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update workflows
  • Loading branch information
vnbaaij committed Sep 17, 2025
commit 1168238a78df119109f8f92a0d314bc6ab3a42c9
4 changes: 2 additions & 2 deletions .github/workflows/build-core-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.205
# dotnet-quality: ga
dotnet-version: 9.0.x
dotnet-quality: ga

# - name: Setup .NET 10.0
# uses: actions/setup-dotnet@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.205
dotnet-version: 9.0.x
dotnet-quality: ga

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
- name: .NET Setup SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.205
# dotnet-quality: ga
dotnet-version: 9.0.x
dotnet-quality: ga

# - name: Setup .NET 10.0
# uses: actions/setup-dotnet@v4
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/deploy_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
name: Build and deploy Demo site
env:
DOTNET_VERSION: "net9.0"
DOTNET_VERSION: "net10.0"
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
Expand All @@ -38,17 +38,17 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4

- name: .NET Setup SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.205
# dotnet-quality: ga

# - name: Setup .NET 10.0
# - name: .NET Setup SDKs
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: 10.0.x
# dotnet-quality: preview
# dotnet-version: 9.0.205
# dotnet-quality: ga

- name: Setup .NET 10.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
dotnet-quality: preview

- name: NPM Install
uses: actions/setup-node@v4
Expand Down