Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
373fd50
Bump Microsoft.NET.Test.Sdk and 3 others
dependabot[bot] Aug 5, 2025
9abe07a
Bump System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-beta6.25358…
dependabot[bot] Aug 12, 2025
7b65c71
Bump actions/checkout from 4 to 5
dependabot[bot] Aug 12, 2025
33dae56
Bump Microsoft.NET.Test.Sdk from 17.13.0 to 17.14.1
dependabot[bot] Aug 15, 2025
926b5b5
Bump xunit.runner.visualstudio from 3.1.0 to 3.1.4
dependabot[bot] Aug 19, 2025
6e29015
Bump Microsoft.OpenApi.Readers from 1.6.24 to 1.6.25
dependabot[bot] Aug 22, 2025
6a6f3f9
Bump actions/setup-dotnet from 4 to 5
dependabot[bot] Sep 4, 2025
e38becc
Bump Microsoft.OpenApi from 1.6.24 to 2.3.1
dependabot[bot] Sep 8, 2025
8423fc8
Bump System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-rc.1.25451.107
dependabot[bot] Sep 9, 2025
47318a3
chore: change dependabot to run weekly
MIchaelMainer Sep 17, 2025
c75c57e
Merge remote-tracking branch 'remotes/origin/dependabot/github_action…
MIchaelMainer Sep 17, 2025
fe2729d
Merge remote-tracking branch 'remotes/origin/dependabot/github_action…
MIchaelMainer Sep 18, 2025
8dd4b20
Merge remote-tracking branch 'remotes/origin/dependabot/nuget/src/kib…
MIchaelMainer Sep 18, 2025
da04e4b
Merge remote-tracking branch 'remotes/origin/dependabot/nuget/src/kib…
MIchaelMainer Sep 18, 2025
c91e32c
Merge remote-tracking branch 'remotes/origin/dependabot/nuget/src/kib…
MIchaelMainer Sep 18, 2025
ff07804
Merge remote-tracking branch 'remotes/origin/dependabot/nuget/src/kib…
MIchaelMainer Sep 18, 2025
68453a7
Merge remote-tracking branch 'remotes/origin/dependabot/nuget/src/kib…
MIchaelMainer Sep 18, 2025
54da2d9
Merge remote-tracking branch 'remotes/origin/dependabot/nuget/test/ki…
MIchaelMainer Sep 18, 2025
ecd883a
Merge remote-tracking branch 'remotes/origin/dependabot/nuget/test/ki…
MIchaelMainer Sep 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ updates:
- package-ecosystem: nuget
directory: "/"
schedule:
interval: daily
interval: weekly
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
interval: weekly
open-pull-requests-limit: 10
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
GITHUB_RUN_NUMBER: ${{ github.run_number }}
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

Expand All @@ -41,7 +41,7 @@ jobs:

- name: Checkout repository
id: checkout_repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
steps:
- name: Checkout repository
id: checkout_repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

Expand Down
2 changes: 1 addition & 1 deletion src/kibali/Kibali.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.OpenApi" Version="1.6.24" />
<PackageReference Include="Microsoft.OpenApi" Version="2.3.1" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/kibaliTool/KibaliTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.24" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.25" />
<PackageReference Include="System.CommandLine" Version="2.0.0-rc.1.25451.107" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions test/kibaliTests/KibaliTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Loading