Skip to content

Commit

Permalink
Update Actions dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Brett Logan <lindluni@github.com>
  • Loading branch information
lindluni committed Mar 10, 2024
1 parent e8f426f commit 04d8080
Showing 1 changed file with 14 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: Build and deploy Node.js app to Azure Web App - actions-bot
name: Deploy Web App

on:
push:
Expand All @@ -17,7 +14,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Node.js version
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20.x'

Expand All @@ -31,7 +28,7 @@ jobs:
run: zip release.zip ./* -r

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: node-app
path: release.zip
Expand All @@ -42,28 +39,28 @@ jobs:
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
permissions:
id-token: write #This is required for requesting the JWT
permissions:
id-token: write #This is required for requesting the JWT

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: node-app

- name: Unzip artifact for deployment
run: unzip release.zip
- name: Login to Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_DDA0FC3A41384DD9A36214F89BDECBC9 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_9FADD29451CA4333893AA1B2E4F971A8 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_3D96DBAC16164DD1A29B494A75FEEFA1 }}

- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_DDA0FC3A41384DD9A36214F89BDECBC9 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_9FADD29451CA4333893AA1B2E4F971A8 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_3D96DBAC16164DD1A29B494A75FEEFA1 }}

- name: 'Deploy to Azure Web App'
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
uses: azure/webapps-deploy@v3
with:
app-name: 'actions-bot'
slot-name: 'Production'
Expand Down

0 comments on commit 04d8080

Please sign in to comment.