diff --git a/csharp/.github/workflows/release.yml b/csharp/.github/workflows/release.yml index cd196e3..7538907 100644 --- a/csharp/.github/workflows/release.yml +++ b/csharp/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: Create Draft Release on: push: tags: - - 'v*' + - "v*" permissions: contents: write @@ -14,12 +14,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.x + dotnet-version: 10.x - name: Build Solution run: dotnet build TimeMocker.sln -c Release -p:Platform=x64