Skip to content

Commit d2f5bda

Browse files
chore(deps): bump actions/cache from 4 to 5 (#587)
* chore(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: formatting --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Vincent Biret <vibiret@microsoft.com>
1 parent f71b96c commit d2f5bda

13 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
5050
- name: Cache SonarCloud packages
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
with:
5353
path: ~/.sonar/cache
5454
key: ${{ runner.os }}-sonar

src/abstractions/serialization/KiotaJsonSerializer.Deserialization.NonGeneric.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#endif
1414

1515
namespace Microsoft.Kiota.Abstractions.Serialization;
16+
1617
public static partial class KiotaJsonSerializer
1718
{
1819

tests/abstractions/Authentication/AuthenticationTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using Xunit;
99

1010
namespace Microsoft.Kiota.Abstractions.Tests;
11+
1112
public class AuthenticationTests
1213
{
1314
[Fact]

tests/abstractions/Serialization/Mocks/TestEntity.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using Microsoft.Kiota.Abstractions.Serialization;
44

55
namespace Microsoft.Kiota.Abstractions.Tests.Serialization.Mocks;
6+
67
public class TestEntity : IParsable, IAdditionalDataHolder
78
{
89
/// <summary>Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.</summary>

tests/authentication/azure/AzureIdentityAuthenticationProviderTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using Xunit;
99

1010
namespace Microsoft.Kiota.Authentication.Azure.Tests;
11+
1112
public class AzureIdentityAuthenticationProviderTests
1213
{
1314
[Fact]

tests/http/httpClient/Middleware/HeadersInspectionHandlerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using Xunit;
1010

1111
namespace Microsoft.Kiota.Http.HttpClientLibrary.Tests.Middleware;
12+
1213
public class HeadersInspectionHandlerTests : IDisposable
1314
{
1415
private readonly List<IDisposable> _disposables = new();

tests/serialization/form/FormParseNodeTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using Microsoft.Kiota.Serialization.Form.Tests.Mocks;
44

55
namespace Microsoft.Kiota.Serialization.Form.Tests;
6+
67
public class FormParseNodeTests
78
{
89
public FormParseNodeTests()

tests/serialization/form/FormSerializationWriterFactoryTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
namespace Microsoft.Kiota.Serialization.Form.Tests;
2+
23
public class FormSerializationWriterFactoryTests
34
{
45
private readonly FormSerializationWriterFactory _formSerializationFactory = new();

tests/serialization/form/FormSerializationWriterTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using Microsoft.Kiota.Serialization.Form.Tests.Mocks;
55

66
namespace Microsoft.Kiota.Serialization.Form.Tests;
7+
78
public class FormSerializationWriterTests
89
{
910
public FormSerializationWriterTests()

tests/serialization/form/Mocks/TestEntity.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using Microsoft.Kiota.Abstractions.Serialization;
33

44
namespace Microsoft.Kiota.Serialization.Form.Tests.Mocks;
5+
56
public class TestEntity : IParsable, IAdditionalDataHolder
67
{
78
/// <summary>Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.</summary>

0 commit comments

Comments
 (0)