Skip to content

Commit 391fb9c

Browse files
authored
chore: bump versions (#49)
1 parent d044714 commit 391fb9c

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
os: [ ubuntu-latest, windows-latest, macOS-latest ]
3030
steps:
3131
- name: 'Checkout'
32-
uses: actions/checkout@v2.3.4
32+
uses: actions/checkout@v3.0.0
3333
with:
3434
lfs: true
3535
fetch-depth: 0
3636
- name: 'Install .NET Core SDK'
37-
uses: actions/setup-dotnet@v1.8.2
37+
uses: actions/setup-dotnet@v2.0.0
3838
- name: 'Dotnet Tool Restore'
3939
run: dotnet tool restore
4040
shell: pwsh
@@ -48,7 +48,7 @@ jobs:
4848
run: dotnet cake --target=Pack
4949
shell: pwsh
5050
- name: 'Publish artifacts'
51-
uses: actions/upload-artifact@v2.2.4
51+
uses: actions/upload-artifact@v3.0.0
5252
with:
5353
name: ${{matrix.os}}
5454
path: './artifacts'
@@ -65,7 +65,7 @@ jobs:
6565
runs-on: windows-latest
6666
steps:
6767
- name: 'Download artifact'
68-
uses: actions/download-artifact@v2
68+
uses: actions/download-artifact@v3.0.0
6969
with:
7070
name: 'windows-latest'
7171
- name: 'Dotnet NuGet Add Source'
@@ -85,7 +85,7 @@ jobs:
8585
runs-on: windows-latest
8686
steps:
8787
- name: 'Download artifact'
88-
uses: actions/download-artifact@v2
88+
uses: actions/download-artifact@v3.0.0
8989
with:
9090
name: 'windows-latest'
9191
- name: 'Dotnet NuGet Push'

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2.3.4
38+
uses: actions/checkout@v3.0.0
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
pull-requests: read
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: release-drafter/release-drafter@v5
16+
- uses: release-drafter/release-drafter@v5.19.0
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
</PropertyGroup>
2323

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

3030
</Project>

dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "1.2.0",
6+
"version": "2.1.0",
77
"commands": [
88
"dotnet-cake"
99
]

test/Directory.Build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
<ItemGroup Label="Package References">
66
<PackageReference Include="CaseExtensions" Version="1.1.0"/>
7-
<PackageReference Include="coverlet.collector" PrivateAssets="all" Version="3.1.0">
7+
<PackageReference Include="coverlet.collector" PrivateAssets="all" Version="3.1.2">
88
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
99
</PackageReference>
10-
<PackageReference Include="FluentAssertions" Version="6.3.0"/>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0"/>
12-
<PackageReference Include="Moq" Version="4.16.1"/>
10+
<PackageReference Include="FluentAssertions" Version="6.5.1"/>
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0"/>
12+
<PackageReference Include="Moq" Version="4.17.2"/>
1313
<PackageReference Include="xunit" Version="2.4.1"/>
1414
<PackageReference Include="xunit.runner.visualstudio" PrivateAssets="all" Version="2.4.3">
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>

0 commit comments

Comments
 (0)