File tree 4 files changed +12
-28
lines changed
4 files changed +12
-28
lines changed Original file line number Diff line number Diff line change 8
8
9
9
# Workflow Jobs
10
10
jobs :
11
- # Analyze Job
12
11
analyze :
13
12
name : Analyze
14
13
runs-on : ubuntu-latest
23
22
- name : Checkout Code
24
23
uses : actions/checkout@v3
25
24
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
29
28
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
-
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 8
8
- main
9
9
tags :
10
10
- ' *.*.*'
11
+ pull_request :
11
12
12
13
# Workflow Jobs
13
14
jobs :
@@ -20,11 +21,12 @@ jobs:
20
21
21
22
# Step 2 - Build and Publish
22
23
- 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
24
25
with :
25
26
project-name : ' RICADO.Configuration'
26
27
github-token : ${{ secrets.GITHUB_TOKEN }}
27
28
private-nuget-url : ' https://nuget.pkg.github.com/ricado-group/index.json'
28
29
private-nuget-token : ${{ secrets.GH_PACKAGES_PAT }}
29
30
public-nuget-token : ${{ secrets.NUGET_APIKEY }}
30
31
publish-public : true
32
+ dotnet-version : 7.0.x
Original file line number Diff line number Diff line change 1
1
# RICADO.Configuration
2
- A Configuration Provider for .NET 6 and .NET Standard 2.0 Applications
2
+ A Configuration Provider for .NET 6/7 and .NET Standard 2.0 Applications
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net6.0;netstandard2.0</TargetFrameworks >
4
+ <TargetFrameworks >net7.0; net6.0;netstandard2.0</TargetFrameworks >
5
5
<Authors >RICADO Group</Authors >
6
6
<Company >RICADO Group LP</Company >
7
- <Description >A Configuration Provider for .NET 6 and .NET Standard 2.0 Applications</Description >
7
+ <Description >A Configuration Provider for .NET 6/7 and .NET Standard 2.0 Applications</Description >
8
8
<Copyright >Copyright © RICADO Group LP 2009 - 2022</Copyright >
9
9
<RepositoryUrl >https://github.com/ricado-group/dotnet-configuration</RepositoryUrl >
10
10
<PackageIcon >packageIcon.png</PackageIcon >
27
27
28
28
<ItemGroup >
29
29
<PackageReference Include =" Microsoft.Extensions.Configuration.Abstractions" Version =" 7.0.0" />
30
- <PackageReference Include =" Microsoft.Extensions.Configuration.Binder" Version =" 7.0.0 " />
30
+ <PackageReference Include =" Microsoft.Extensions.Configuration.Binder" Version =" 7.0.1 " />
31
31
</ItemGroup >
32
32
33
33
</Project >
You can’t perform that action at this time.
0 commit comments