diff --git a/.github/workflows/azure-deploy-dev.yml b/.github/workflows/azure-deploy-dev.yml index a33e49bc..1bc7dded 100644 --- a/.github/workflows/azure-deploy-dev.yml +++ b/.github/workflows/azure-deploy-dev.yml @@ -80,7 +80,7 @@ jobs: # Deploy Web Application - name: Deploy to Azure App Services - uses: azure/webapps-deploy@v2 + uses: azure/webapps-deploy@v3 with: app-name: ${{ vars.WEBAPP_NAME }} images: ${{ env.DOCKER_IMAGE }}:${{ github.sha }} diff --git a/.github/workflows/azure-deploy-prod.yml b/.github/workflows/azure-deploy-prod.yml index 1bfb7581..6f00479a 100644 --- a/.github/workflows/azure-deploy-prod.yml +++ b/.github/workflows/azure-deploy-prod.yml @@ -93,7 +93,7 @@ jobs: # Deploy Web Application - name: Deploy to Azure App Services - uses: azure/webapps-deploy@v2 + uses: azure/webapps-deploy@v3 with: app-name: ${{ vars.WEBAPP_NAME }} images: ${{ env.DOCKER_IMAGE }}:${{ inputs.version || github.ref_name }} diff --git a/.github/workflows/azure-deploy-stage.yml b/.github/workflows/azure-deploy-stage.yml index 161d3586..41dfd9eb 100644 --- a/.github/workflows/azure-deploy-stage.yml +++ b/.github/workflows/azure-deploy-stage.yml @@ -90,7 +90,7 @@ jobs: # Deploy Web Application - name: Deploy to Azure App Services - uses: azure/webapps-deploy@v2 + uses: azure/webapps-deploy@v3 with: app-name: ${{ vars.WEBAPP_NAME }} images: ${{ env.DOCKER_IMAGE }}:${{ inputs.candidate || github.ref_name }} \ No newline at end of file