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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
os: [ ubuntu-latest, windows-latest, macOS-latest ]
steps:
- name: 'Checkout'
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3.0.0
with:
lfs: true
fetch-depth: 0
- name: 'Install .NET Core SDK'
uses: actions/setup-dotnet@v1.8.2
uses: actions/setup-dotnet@v2.0.0
- name: 'Dotnet Tool Restore'
run: dotnet tool restore
shell: pwsh
Expand All @@ -48,7 +48,7 @@ jobs:
run: dotnet cake --target=Pack
shell: pwsh
- name: 'Publish artifacts'
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v3.0.0
with:
name: ${{matrix.os}}
path: './artifacts'
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: windows-latest
steps:
- name: 'Download artifact'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3.0.0
with:
name: 'windows-latest'
- name: 'Dotnet NuGet Add Source'
Expand All @@ -85,7 +85,7 @@ jobs:
runs-on: windows-latest
steps:
- name: 'Download artifact'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3.0.0
with:
name: 'windows-latest'
- name: 'Dotnet NuGet Push'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3.0.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v5.19.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
</PropertyGroup>

<ItemGroup Label="Package References">
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" PrivateAssets="all" Version="17.0.64"/>
<PackageReference Include="MinVer" PrivateAssets="all" Version="2.5.0"/>
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="all" Version="1.2.0-beta.354"/>
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" PrivateAssets="all" Version="17.1.46"/>
<PackageReference Include="MinVer" PrivateAssets="all" Version="3.1.0"/>
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="all" Version="1.2.0-beta.406"/>
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "1.2.0",
"version": "2.1.0",
"commands": [
"dotnet-cake"
]
Expand Down
8 changes: 4 additions & 4 deletions test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

<ItemGroup Label="Package References">
<PackageReference Include="CaseExtensions" Version="1.1.0"/>
<PackageReference Include="coverlet.collector" PrivateAssets="all" Version="3.1.0">
<PackageReference Include="coverlet.collector" PrivateAssets="all" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="6.3.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0"/>
<PackageReference Include="Moq" Version="4.16.1"/>
<PackageReference Include="FluentAssertions" Version="6.5.1"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0"/>
<PackageReference Include="Moq" Version="4.17.2"/>
<PackageReference Include="xunit" Version="2.4.1"/>
<PackageReference Include="xunit.runner.visualstudio" PrivateAssets="all" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down