From 48d26b380578c64ca8efb65ffc246aae9868808b Mon Sep 17 00:00:00 2001 From: Victor Frye Date: Mon, 10 Jun 2024 09:48:29 -0400 Subject: [PATCH] chore(blazor): update workflow dependencies (#133) --- .github/dependabot.yml | 1 - .github/workflows/azure-webapp.yml | 8 ++++---- .github/workflows/{codeql.yaml => codeql.yml} | 0 .vscode/launch.json | 4 ++-- 4 files changed, 6 insertions(+), 7 deletions(-) rename .github/workflows/{codeql.yaml => codeql.yml} (100%) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8cf7ef7..a5da640 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,7 +11,6 @@ updates: schedule: interval: 'weekly' labels: ['📦 Issue-Dependencies', '🌐 Area-WebApp'] - open-pull-requests-limit: 0 # working on a larger migration # Maintain dependencies for GitHub Actions - package-ecosystem: 'github-actions' diff --git a/.github/workflows/azure-webapp.yml b/.github/workflows/azure-webapp.yml index 4032508..07b1e2a 100644 --- a/.github/workflows/azure-webapp.yml +++ b/.github/workflows/azure-webapp.yml @@ -55,7 +55,7 @@ jobs: - name: Upload artifact if: github.event_name == 'push' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.APP_ARTIFACT_NAME }} path: ${{ env.APP_OUTPUT_LOCATION }} @@ -76,12 +76,12 @@ jobs: steps: - name: Download artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ env.APP_ARTIFACT_NAME }} - name: Login to Azure - uses: azure/login@v1 + uses: azure/login@v2 with: client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_1E91DC00E9D14E53A32EF16A2525A8B7 }} tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_8335C2ED4DB043D09F772DA0C4190304 }} @@ -89,7 +89,7 @@ jobs: - name: Deploy Azure Web App id: deploy-to-webapp - uses: azure/webapps-deploy@v2 + uses: azure/webapps-deploy@v3 with: app-name: 'app-dotcom' slot-name: 'Production' diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yml similarity index 100% rename from .github/workflows/codeql.yaml rename to .github/workflows/codeql.yml diff --git a/.vscode/launch.json b/.vscode/launch.json index 20ef917..22eb6bd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,10 +5,10 @@ "version": "0.2.0", "configurations": [ { - "name": "C#: DotCom Web App Debug", + "name": "C#: Web App Debug", "type": "dotnet", "request": "launch", - "projectPath": "${workspaceFolder}/src/App/App.csproj" + "projectPath": "${workspaceFolder}/src/App/VictorFrye.DotCom.csproj" } ] }