Skip to content

Commit

Permalink
Upgrade dependency and add .NET 8 in one CI (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
cretz authored Oct 31, 2024
1 parent 6006744 commit 6a858a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
include:
- os: windows-latest
checkTarget: true
# We want to use one version for most things and this latest for
# others. This is an ok way to test both without requiring a
# separate matrix permutation.
dotNetVersionOverride: 8.x
- os: ubuntu-latest
docsTarget: true
cloudTestTarget: true
Expand Down Expand Up @@ -44,7 +48,7 @@ jobs:
with:
# Specific .NET version required because GitHub macos ARM image has
# bad pre-installed .NET version
dotnet-version: 6.x
dotnet-version: ${{ matrix.dotNetVersionOverride || '6.x' }}

- name: Install protoc
uses: arduino/setup-protoc@v3
Expand Down
2 changes: 1 addition & 1 deletion src/Temporalio/Temporalio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<ItemGroup Condition="'$(TargetFramework)' == 'net462' Or '$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>

<!-- Allow tests to use internals -->
Expand Down

0 comments on commit 6a858a2

Please sign in to comment.