diff --git a/.github/workflows/DeployEverything.yml b/.github/workflows/DeployEverything.yml index 73601eb..bce0d28 100644 --- a/.github/workflows/DeployEverything.yml +++ b/.github/workflows/DeployEverything.yml @@ -74,7 +74,7 @@ jobs: - name: Publish run: dotnet publish "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-build --output "${{ env.AZURE_WEBAPP_PACKAGE_PATH }}" - name: Publish Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: webapp path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} @@ -90,7 +90,7 @@ jobs: with: creds: '${{ secrets.AZURE_CREDENTIALS }}' - name: Download artifact from build job - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: webapp path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} diff --git a/.github/workflows/DeployServerWebAPI.yml b/.github/workflows/DeployServerWebAPI.yml index 0e01a11..1f2ce72 100644 --- a/.github/workflows/DeployServerWebAPI.yml +++ b/.github/workflows/DeployServerWebAPI.yml @@ -26,7 +26,7 @@ jobs: - name: Publish run: dotnet publish "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-build --output "${{ env.AZURE_WEBAPP_PACKAGE_PATH }}" - name: Publish Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: webapp path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} @@ -41,7 +41,7 @@ jobs: with: creds: '${{ secrets.AZURE_CREDENTIALS }}' - name: Download artifact from build job - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: webapp path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}