File tree Expand file tree Collapse file tree 4 files changed +10
-14
lines changed
Expand file tree Collapse file tree 4 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ jobs:
1010 name : Build
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v2
13+ - uses : actions/checkout@v3
1414 with :
1515 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
1616 - name : Setup dotnet
17- uses : actions/setup-dotnet@v1
17+ uses : actions/setup-dotnet@v3
1818 with :
1919 dotnet-version : ' 6.0.x'
2020
Original file line number Diff line number Diff line change @@ -13,21 +13,21 @@ jobs:
1313
1414 steps :
1515 - name : Checkout repository
16- uses : actions/checkout@v2
16+ uses : actions/checkout@v3
1717 with :
1818 # We must fetch at least the immediate parents so that if this is
1919 # a pull request then we can checkout the head.
2020 fetch-depth : 2
2121
2222 # Initializes the CodeQL tools for scanning.
2323 - name : Initialize CodeQL
24- uses : github/codeql-action/init@v1
24+ uses : github/codeql-action/init@v2
2525 # Override language selection by uncommenting this and choosing your languages
2626 with :
2727 languages : csharp
2828
2929 - name : Setup .NET Core
30- uses : actions/setup-dotnet@v1
30+ uses : actions/setup-dotnet@v3
3131 with :
3232 dotnet-version : 6.0.x
3333 - name : Install dependencies
3636 run : dotnet build --configuration Release --no-restore
3737
3838 - name : Perform CodeQL Analysis
39- uses : github/codeql-action/analyze@v1
39+ uses : github/codeql-action/analyze@v2
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <TargetFramework >netstandard2.0</TargetFramework >
5- <Version >1 .0.1 </Version >
5+ <Version >2 .0.0 </Version >
66 <Description >A .NET library that provides extenions and services to operate on ReqIF documents.</Description >
77 <PackageId >ReqIFSharp.Extensions</PackageId >
88 <Company >RHEA System S.A.</Company >
1717 <Authors >Sam Gerene</Authors >
1818 <RequireLicenseAcceptance >false</RequireLicenseAcceptance >
1919 <PackageReleaseNotes >
20- [Initial] release
20+ [Update] reqifsharp 7.0.0
2121 </PackageReleaseNotes >
2222 <LangVersion >latest</LangVersion >
2323 </PropertyGroup >
Original file line number Diff line number Diff line change 33
44 <PropertyGroup >
55 <TargetFramework >netstandard2.0</TargetFramework >
6- <Version >6 .0.1 </Version >
6+ <Version >7 .0.0 </Version >
77 <Description >A .NET library to deserialize (read) and serialize (write) OMG ReqIF documents.</Description >
88 <PackageId >ReqIFSharp</PackageId >
99 <Company >RHEA System S.A.</Company >
1818 <Authors >Sam Gerene, Naron Phou</Authors >
1919 <RequireLicenseAcceptance >false</RequireLicenseAcceptance >
2020 <PackageReleaseNotes >
21- - [Refactor] IReqIFSerializer and ReqIFSerializer to be symmetrical to the IReqIFDeserializer interface
22- - [Add] SupportedFileExtensionKind to deserializer; fixes #47
23- - [Add] capability to serialize to `reqif`, `reqifz`, `zip` format; fixes #23
24- - [Set] stream to position 0 prior to creating XmlReader; fixes #43
25- - [Update] Microsoft.Extensions.Logging.Abstractions to version 6.0.1
21+ - [Update] Microsoft.Extensions.Logging.Abstractions to version 7.0.0
2622 </PackageReleaseNotes >
2723 </PropertyGroup >
2824
You can’t perform that action at this time.
0 commit comments