Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .config/dotnet-tools.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,25 +3,25 @@
"isRoot": true,
"tools": {
"csharpier": {
"version": "1.2.5",
"version": "1.2.6",
"commands": [
"csharpier"
],
"rollForward": false
},
"husky": {
"version": "0.8.0",
"version": "0.9.1",
"commands": [
"husky"
],
"rollForward": false
},
"dotnet-outdated-tool": {
"version": "4.6.9",
"version": "4.7.1",
"commands": [
"dotnet-outdated"
],
"rollForward": false
}
}
}
}
4 changes: 4 additions & 0 deletions .github/workflows/run-codegen-pull-request-task.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,9 @@ name: Run codegen and pull request task

on:
workflow_call:
secrets:
WORKFLOW_PAT:
required: true

jobs:

Expand DownExpand Up@@ -34,6 +37,7 @@ jobs:
- name: Create pull request step
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.WORKFLOW_PAT }}
branch: codegen
title: 'Update codegen files'
body: 'This PR updates the codegen files.'
Expand Down
16 changes: 16 additions & 0 deletions .vscode/tasks.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -93,5 +93,21 @@
"clear": false
}
},
{
"label": ".Net Outdated Upgrade",
"type": "process",
"command": "dotnet",
"args": [
"outdated",
"--upgrade:Prompt"
Comment thread
ptr727 marked this conversation as resolved.
],
"problemMatcher": [
"$msCompile"
],
"presentation": {
"showReuseMessage": false,
"clear": false
}
}
]
}
6 changes: 3 additions & 3 deletions CodeGen/CodeGen.csproj
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,10 +17,10 @@
<VerifyReferenceAotCompatibility>true</VerifyReferenceAotCompatibility>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.2.0" />
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.4.0" />
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Serilog" Version="4.3.0" />
<PackageReference Include="System.CommandLine" Version="2.0.2" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="System.CommandLine" Version="2.0.5" />
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions Console/Console.csproj
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,13 +17,13 @@
<VerifyReferenceAotCompatibility>true</VerifyReferenceAotCompatibility>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.5" />
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="Serilog" Version="4.3.0" />
<PackageReference Include="System.CommandLine" Version="2.0.2" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="System.CommandLine" Version="2.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Library\Library.csproj" />
Expand Down
4 changes: 2 additions & 2 deletions Library/Library.csproj
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,10 +33,10 @@
<VerifyReferenceAotCompatibility>true</VerifyReferenceAotCompatibility>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.5" />
<PackageReference
Include="Microsoft.SourceLink.GitHub"
Version="10.0.102"
Version="10.0.201"
PrivateAssets="all"
/>
</ItemGroup>
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -382,6 +382,15 @@ Licensed under the [MIT License][license-link]\
- Save the PAT as `DOCKER_HUB_ACCESS_TOKEN` and `DOCKER_HUB_USERNAME` in:
- GitHub project security Settings / Secrets / Actions.
- GitHub project security Settings / Secrets / Dependabot.
- Create a [GitHub Personal Access Token](https://github.com/settings/personal-access-tokens).
- Save the PAT as `WORKFLOW_PAT`.
- Permissions:
- Contents: Read & write (to push the codegen commit)
- Pull requests: Read & write — to create the PR
- Workflows: Read & write — this is the key permission that allows the token to trigger pull_request events in other workflows
- Metadata: Read-only (auto-required)
- Save the PAT as `WORKFLOW_PAT` in:
- GitHub project security Settings / Secrets / Actions.

**GitHub project settings**:

Expand Down
4 changes: 2 additions & 2 deletions Tests/Tests.csproj
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,8 +9,8 @@
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AwesomeAssertions" Version="9.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="AwesomeAssertions" Version="9.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
<PackageReference Include="xunit.analyzers" Version="1.27.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
Loading