File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99# Workflow Jobs
1010jobs :
11- # Analyze Job
1211 analyze :
1312 name : Analyze
1413 runs-on : ubuntu-latest
2322 - name : Checkout Code
2423 uses : actions/checkout@v3
2524
26- # Step 2 - Initialize CodeQL
27- - name : Initialize CodeQL
28- uses : github/ codeql-action/init@v2
25+ # Step 2 - Run CodeQL
26+ - name : Run CodeQL
27+ uses : ricado-group/dotnet-library- codeql-action@v1
2928 with :
30- languages : csharp
31- queries : security-and-quality
32-
33- # Step 3 - Setup .NET 6 with GitHub Packages Authentication
34- - name : Setup .NET 6 with GitHub Packages Authentication
35- uses : actions/setup-dotnet@v3.0.2
36- with :
37- dotnet-version : 6.0.x
38- source-url : https://nuget.pkg.github.com/ricado-group/index.json
39- env :
40- NUGET_AUTH_TOKEN : ${{ secrets.GH_PACKAGES_PAT }}
41-
42- # Step 4 - Build the Library
43- - name : Run CodeQL Autobuild
44- uses : github/codeql-action/autobuild@v2
45-
46- # Step 5 - Perform CodeQL Analysis
47- - name : Perform CodeQL Analysis
48- uses : github/codeql-action/analyze@v2
29+ private-nuget-url : ' https://nuget.pkg.github.com/ricado-group/index.json'
30+ private-nuget-token : ${{ secrets.GH_PACKAGES_PAT }}
Original file line number Diff line number Diff line change 88 - main
99 tags :
1010 - ' *.*.*'
11+ pull_request :
1112
1213# Workflow Jobs
1314jobs :
@@ -20,11 +21,12 @@ jobs:
2021
2122 # Step 2 - Build and Publish
2223 - name : Build and Publish
23- uses : ricado-group/dotnet-library-build-release-action@v1.3
24+ uses : ricado-group/dotnet-library-build-release-action@v1
2425 with :
2526 project-name : ' RICADO.Threading'
2627 github-token : ${{ secrets.GITHUB_TOKEN }}
2728 private-nuget-url : ' https://nuget.pkg.github.com/ricado-group/index.json'
2829 private-nuget-token : ${{ secrets.GH_PACKAGES_PAT }}
2930 public-nuget-token : ${{ secrets.NUGET_APIKEY }}
3031 publish-public : true
32+ dotnet-version : 7.0.x
Original file line number Diff line number Diff line change 11# RICADO.Threading
2- A Threading Helper Library utilizing System.Threading for .NET 6 and .NET Standard 2.0 Applications
2+ A Threading Helper Library utilizing System.Threading for .NET 6/7 and .NET Standard 2.0 Applications
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >net6.0;netstandard2.0</TargetFrameworks >
4+ <TargetFrameworks >net7.0; net6.0;netstandard2.0</TargetFrameworks >
55 <Authors >RICADO Group</Authors >
66 <Company >RICADO Group LP</Company >
7- <Description >A Threading Helper Library utilizing System.Threading for .NET 6 and .NET Standard 2.0 Applications</Description >
8- <Copyright >Copyright © RICADO Group LP 2009 - 2021 </Copyright >
7+ <Description >A Threading Helper Library utilizing System.Threading for .NET 6/7 and .NET Standard 2.0 Applications</Description >
8+ <Copyright >Copyright © RICADO Group LP 2009 - 2023 </Copyright >
99 <PackageLicenseFile >LICENSE</PackageLicenseFile >
1010 <PackageIcon >packageIcon.png</PackageIcon >
1111 <RepositoryUrl >https://github.com/ricado-group/dotnet-threading</RepositoryUrl >
2626 </ItemGroup >
2727
2828 <ItemGroup >
29- <PackageReference Include =" RICADO.Logging" Version =" 1.2.2 " />
29+ <PackageReference Include =" RICADO.Logging" Version =" 1.3.0 " />
3030 </ItemGroup >
3131
3232</Project >
You can’t perform that action at this time.
0 commit comments