From 4ce080b45a5d2d5ed17bdaf55788bfb585aee4e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Oct 2022 16:01:19 +0000 Subject: [PATCH] Bump actions/setup-dotnet from 2 to 3 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 2 to 3. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v2...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/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 07637bb..f2807b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: ignore: master,develop min_length: 3 # Min length of the branch name - name: Setup .NET Core - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v3 with: dotnet-version: 3.1.x # SDK Version to use. We start by installing 3.1.* for msbuild to use when building DotnetFullOnly. This is replaced later, by 5.0.* - name: Setup Nuget @@ -41,7 +41,7 @@ jobs: - name: Build with MSBuild run: msbuild Daf.Core.Ssis_DotnetFullOnly.sln /property:Configuration=Release - name: Setup .NET Core - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v3 with: dotnet-version: 6.0.x # SDK Version to use. - name: Build .NET Core projects diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6805af3..a8864d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: configuration: "configs/configuration.json" toTag: v${{ steps.nbgv.outputs.SimpleVersion }} - name: Setup .NET Core - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v3 with: dotnet-version: 3.1.x # SDK Version to use. We start by installing 3.1.* for msbuild to use when building DotnetFullOnly. This is replaced later, by 5.0.* - name: Setup Nuget @@ -61,7 +61,7 @@ jobs: - name: Build with MSBuild run: msbuild Daf.Core.Ssis_DotnetFullOnly.sln /property:Configuration=Release - name: Setup .NET Core - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v3 with: dotnet-version: 6.0.x # SDK Version to use. source-url: https://api.nuget.org/v3/index.json