Skip to content

Commit 1ff63d0

Browse files
committed
(#276) fix "No usable version of libssl was found"
1 parent 2138acb commit 1ff63d0

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
os: [windows-latest, ubuntu-latest]
22+
os: [windows-2022, ubuntu-24.04]
2323

2424
env:
2525
AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }}
@@ -59,6 +59,7 @@ jobs:
5959
6.0
6060
7.0
6161
8.0
62+
9.0
6263
6364
- name: Cache Tools
6465
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
6.0
3434
7.0
3535
8.0
36+
9.0
3637
3738
- name: Cache Tools
3839
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.403",
3+
"version": "9.0.300",
44
"rollForward": "latestFeature"
55
}
6-
}
6+
}

recipe.cake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ BuildParameters.PrintParameters(Context);
2323

2424
ToolSettings.SetToolPreprocessorDirectives(
2525
gitReleaseManagerGlobalTool: "#tool dotnet:?package=GitReleaseManager.Tool&version=0.18.0",
26-
gitVersionGlobalTool: "#tool dotnet:?package=GitVersion.Tool&version=5.12.0");
26+
gitVersionGlobalTool: "#tool dotnet:?package=GitVersion.Tool&version=5.12.0",
27+
reportGeneratorGlobalTool: "#tool dotnet:?package=dotnet-reportgenerator-globaltool&version=5.4.7",
28+
coverallsGlobalTool: "#tool dotnet:?package=coveralls.net&version=4.0.1");
2729

2830
ToolSettings.SetToolSettings(context: Context);
2931

0 commit comments

Comments
 (0)