Skip to content

Commit

Permalink
fix: Fix CI
Browse files Browse the repository at this point in the history
Updated the GitHub Actions workflow to use the latest version of actions/checkout and actions/setup-dotnet. The dotnet-version parameter was changed to 8.0 and dotnet-quality set to preview for better compatibility with the project dependencies.
  • Loading branch information
SakuraIsayeki committed Sep 17, 2023
1 parent 07178c3 commit 2bc56b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
configuration: [Debug, Release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
submodules: 'recursive'

- name: Setup .NET
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
allow-prerelease: true
dotnet-version: 8.0
dotnet-quality: preview
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down

0 comments on commit 2bc56b4

Please sign in to comment.