From 08d382682faad667cce1ef0f674babc147be5d8b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 03:07:00 +0000 Subject: [PATCH] Bump actions/setup-dotnet from 1 to 3 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 1 to 3. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v1...v3) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 89f877b..9223e9a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,11 +16,11 @@ jobs: with: path: SCIM.Client/ - name: Setup .NET Core 5.0.100 - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v3 with: dotnet-version: 5.0.100 - name: Setup .NET Core 3.1.x - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v3 with: dotnet-version: '3.1.x' - name: Test Gatekeeper.SCIM.Client.Tests.Unit