Skip to content

Commit

Permalink
Fix CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Nov 18, 2023
1 parent 3c011c5 commit 0f71ac0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4

- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sonar-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
Expand Down
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ install:
$env:build_version = Get-Content ".version"
Update-AppveyorBuild -Version "$env:build_version-preview-$env:appveyor_build_number"
dotnet tool install -g InheritDocTool
winget install Microsoft.DotNet.SDK.8
Invoke-WebRequest 'https://dot.net/v1/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'
./dotnet-install.ps1 -InstallDir '~/.dotnet' -Version '8.0' -Runtime 'dotnet'
dotnet_csproj:
patch: true
Expand Down

0 comments on commit 0f71ac0

Please sign in to comment.