Skip to content

Commit

Permalink
Update to KNet 2.7.7 (#270)
Browse files Browse the repository at this point in the history
* Update to KNet 2.7.7

* Align workflows
  • Loading branch information
masesdevelopers authored Jul 30, 2024
1 parent 456e83a commit ad608b5
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
push:
# only trigger on branches, not on tags
branches: '**'
paths-ignore:
- 'docs/**'
workflow_dispatch:
inputs:
UseLastRepositoryBuildJNet:
Expand Down
16 changes: 14 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,26 @@ name: "CodeQL"

on:
push:
branches: [ master ]
branches:
- master
- release/**
paths-ignore:
- 'docs/**'
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches:
- master
- release/**
paths-ignore:
- 'docs/**'
# Disabled to avoid error on schedule from check_changes job
# schedule:
# - cron: '26 23 * * 3'

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
# Verify if a check is needed
check_changes:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ name: CI_PULLREQUEST
# events but only for the master branch
on:
pull_request:
branches: [ master ]
branches:
- master
- release/**
paths-ignore:
- 'docs/**'

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
# Verify if a build is needed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MASES.KNet.Serialization.Avro" Version="2.7.6" />
<PackageReference Include="MASES.KNet.Serialization.Avro" Version="2.7.7" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/net/KEFCore.SerDes/KEFCore.SerDes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.32" PrivateAssets="none" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.20" PrivateAssets="none" Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.7" PrivateAssets="none" Condition="'$(TargetFramework)' == 'net8.0'" />
<PackageReference Include="MASES.KNet" Version="2.7.6">
<PackageReference Include="MASES.KNet" Version="2.7.7">
<IncludeAssets>All</IncludeAssets>
<PrivateAssets>None</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit ad608b5

Please sign in to comment.