Skip to content

Commit

Permalink
chore(blazor): update workflow dependencies (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
victorfrye authored Jun 10, 2024
1 parent e5f5cd7 commit 48d26b3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/azure-webapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -76,20 +76,20 @@ 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 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_E53ED1421FF14D8791C4BA82439F1941 }}

- 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'
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}

0 comments on commit 48d26b3

Please sign in to comment.