From abacf2e7e2e4881461c246bd205806088749fd7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 11:15:16 +0000 Subject: [PATCH] Bump the actions group with 3 updates Bumps the actions group with 3 updates: [gittools/actions](https://github.com/gittools/actions), [samsmithnz/SamsDotNetSonarCloudAction](https://github.com/samsmithnz/samsdotnetsonarcloudaction) and [Azure/cli](https://github.com/azure/cli). Updates `gittools/actions` from 0.10.2 to 0.13.2 - [Release notes](https://github.com/gittools/actions/releases) - [Commits](https://github.com/gittools/actions/compare/v0.10.2...v0.13.2) Updates `samsmithnz/SamsDotNetSonarCloudAction` from 2.1.0 to 2.1.5 - [Release notes](https://github.com/samsmithnz/samsdotnetsonarcloudaction/releases) - [Commits](https://github.com/samsmithnz/samsdotnetsonarcloudaction/compare/v2.1.0...v2.1.5) Updates `Azure/cli` from 1.0.8 to 1.0.9 - [Release notes](https://github.com/azure/cli/releases) - [Changelog](https://github.com/Azure/cli/blob/master/ReleaseProcess.md) - [Commits](https://github.com/azure/cli/compare/v1.0.8...v1.0.9) --- updated-dependencies: - dependency-name: gittools/actions dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: samsmithnz/SamsDotNetSonarCloudAction dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: Azure/cli dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/dotnetcore.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index ba0e11d5..9fcb4278 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -20,11 +20,11 @@ jobs: fetch-depth: 0 #fetch-depth is needed for GitVersion #Install and calculate the new version with GitVersion - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v0.10.2 + uses: gittools/actions/gitversion/setup@v0.13.2 with: versionSpec: 5.x - name: Determine Version - uses: gittools/actions/gitversion/execute@v0.10.2 + uses: gittools/actions/gitversion/execute@v0.13.2 id: gitversion # step id used as reference for output values - name: Display GitVersion outputs run: | @@ -132,7 +132,7 @@ jobs: if: github.ref == 'refs/heads/main' steps: - name: Run Sonarcloud test - uses: samsmithnz/SamsDotNetSonarCloudAction@v2.1.0 + uses: samsmithnz/SamsDotNetSonarCloudAction@v2.1.5 with: projects: 'src/DevOpsMetrics.Core/DevOpsMetrics.Core.csproj,src/DevOpsMetrics.Function/DevOpsMetrics.Function.csproj,src/DevOpsMetrics.FunctionalTests/DevOpsMetrics.FunctionalTests.csproj,src/DevOpsMetrics.Service/DevOpsMetrics.Service.csproj,src/DevOpsMetrics.Tests/DevOpsMetrics.Tests.csproj,src/DevOpsMetrics.Web/DevOpsMetrics.Web.csproj,src/DevOpsMetrics.Cmd/DevOpsMetrics.Cmd.csproj' dotnet-version: '8.0.x' @@ -274,13 +274,13 @@ jobs: creds: ${{ secrets.AZURE_SP }} #Swap staging slots with prod - name: Swap web service staging slot to production - uses: Azure/cli@v1.0.8 + uses: Azure/cli@v1.0.9 with: inlineScript: az webapp deployment slot swap --name "devops-prod-eu-service" --resource-group "devopsmetrics" --slot staging --target-slot production - name: Deploy web service app settings run: az webapp config appsettings set --name "devops-prod-eu-service" --resource-group "devopsmetrics" --settings "AppSettings:AzureDevOpsPatToken=${{ secrets.AzureDevOpsPATToken }}" "AppSettings:GitHubClientId=${{ secrets.GitHubClientId }}" "AppSettings:GitHubClientSecret=${{ secrets.GitHubClientSecret }}" "AppSettings:AzureStorageAccountConfigurationString=${{ secrets.AzureStorageConnectionString }}" - name: Swap web site staging slot to production - uses: Azure/cli@v1.0.8 + uses: Azure/cli@v1.0.9 with: inlineScript: az webapp deployment slot swap --name "devops-prod-eu-web" --resource-group "devopsmetrics" --slot staging --target-slot production - name: Deploy website app settings