Skip to content

Commit b63e916

Browse files
committed
Merge branch 'master' of github.com:nanotaboada/Dotnet.Samples.AspNetCore.WebApi into feature/rate-limiting
2 parents 2e72cdc + 3abc021 commit b63e916

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed

.github/workflows/dotnet.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v4.2.2
24+
uses: actions/checkout@v5.0.0
2525

2626
- name: Set up .NET ${{ env.DOTNET_VERSION }}
2727
uses: actions/setup-dotnet@v4.3.1
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v4.2.2
50+
uses: actions/checkout@v5.0.0
5151

5252
- name: Lint commit messages
5353
uses: wagoid/commitlint-github-action@v6.2.1
@@ -84,16 +84,16 @@ jobs:
8484
service: [codecov, codacy]
8585
steps:
8686
- name: Checkout repository
87-
uses: actions/checkout@v4.2.2
87+
uses: actions/checkout@v5.0.0
8888

8989
- name: Download Cobertura coverage report artifact
90-
uses: actions/download-artifact@v4.3.0
90+
uses: actions/download-artifact@v5.0.0
9191
with:
9292
name: cobertura.xml
9393

9494
- name: Upload Cobertura coverage report to ${{ matrix.service }}
9595
if: ${{ matrix.service == 'codecov' }}
96-
uses: codecov/codecov-action@v5.4.3
96+
uses: codecov/codecov-action@v5.5.0
9797
with:
9898
token: ${{ secrets.CODECOV_TOKEN }}
9999
files: cobertura.xml
@@ -117,10 +117,10 @@ jobs:
117117

118118
steps:
119119
- name: Checkout repository
120-
uses: actions/checkout@v4.2.2
120+
uses: actions/checkout@v5.0.0
121121

122122
- name: Log in to GitHub Container Registry
123-
uses: docker/login-action@v3.4.0
123+
uses: docker/login-action@v3.5.0
124124
with:
125125
registry: ghcr.io
126126
username: ${{ github.actor }}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/ac7b7e22f1cd4d9d9233b36982b0d6a9)](https://app.codacy.com/gh/nanotaboada/Dotnet.Samples.AspNetCore.WebApi/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
99
[![codecov](https://codecov.io/gh/nanotaboada/Dotnet.Samples.AspNetCore.WebApi/graph/badge.svg?token=hgJc1rStJ9)](https://codecov.io/gh/nanotaboada/Dotnet.Samples.AspNetCore.WebApi)
1010
[![CodeFactor](https://www.codefactor.io/repository/github/nanotaboada/Dotnet.Samples.AspNetCore.WebApi/badge)](https://www.codefactor.io/repository/github/nanotaboada/Dotnet.Samples.AspNetCore.WebApi)
11-
[![codebeat badge](https://codebeat.co/badges/6292db95-5021-4154-8438-be27d15c14c0)](https://codebeat.co/projects/github-com-nanotaboada-dotnet-samples-aspnetcore-webapi-master)
1211

1312
## About
1413

test/Dotnet.Samples.AspNetCore.WebApi.Tests/Dotnet.Samples.AspNetCore.WebApi.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
</PropertyGroup>
1010

1111
<ItemGroup Label="Test dependencies">
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" PrivateAssets="all" />
13-
<PackageReference Include="Moq" Version="4.20.72" PrivateAssets="all" />
14-
<PackageReference Include="FluentAssertions" Version="8.3.0" PrivateAssets="all" />
15-
<PackageReference Include="xunit" Version="2.9.3" PrivateAssets="all" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.3" PrivateAssets="all" />
17-
<PackageReference Include="coverlet.collector" Version="6.0.4" PrivateAssets="all" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" PrivateAssets="all" />
13+
<PackageReference Include="Moq" Version="4.20.72" PrivateAssets="all" />
14+
<PackageReference Include="FluentAssertions" Version="8.3.0" PrivateAssets="all" />
15+
<PackageReference Include="xunit" Version="2.9.3" PrivateAssets="all" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.3" PrivateAssets="all" />
17+
<PackageReference Include="coverlet.collector" Version="6.0.4" PrivateAssets="all" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

test/Dotnet.Samples.AspNetCore.WebApi.Tests/packages.lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
},
4747
"xunit.runner.visualstudio": {
4848
"type": "Direct",
49-
"requested": "[3.1.3, )",
50-
"resolved": "3.1.3",
51-
"contentHash": "go7e81n/UI3LeNqoJIJ3thkS4JfJtiQnDbAxLh09JkJqoHthnfbLS5p68s4/Bm12B9umkoYSB5SaDr68hZNleg=="
49+
"requested": "[3.1.4, )",
50+
"resolved": "3.1.4",
51+
"contentHash": "5mj99LvCqrq3CNi06xYdyIAXOEh+5b33F2nErCzI5zWiDdLHXiPXEWFSUAF8zlIv0ZWqjZNCwHTQeAPYbF3pCg=="
5252
},
5353
"AutoMapper": {
5454
"type": "Transitive",

0 commit comments

Comments
 (0)