From b1e950648e9ae77579840064b67c34c6802ffae7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 11:56:00 +0000 Subject: [PATCH] Bump the actions group with 2 updates Bumps the actions group with 2 updates: [samsmithnz/SamsDotNetSonarCloudAction](https://github.com/samsmithnz/samsdotnetsonarcloudaction) and [Azure/cli](https://github.com/azure/cli). Updates `samsmithnz/SamsDotNetSonarCloudAction` from 2.1.0 to 2.1.1 - [Release notes](https://github.com/samsmithnz/samsdotnetsonarcloudaction/releases) - [Commits](https://github.com/samsmithnz/samsdotnetsonarcloudaction/compare/v2.1.0...v2.1.1) 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: 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index ba0e11d5..ba2b1a54 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -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.1 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