diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 7a7c0191f1..acd1e14b1f 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -60,13 +60,13 @@ jobs: ISCC.exe /dMyAppVersion=$env:VERSION mavproxy.iss ls Output - name: Archive build - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: MAVProxyInstaller path: windows/Output retention-days: 7 - name: Pre Release - uses: "softprops/action-gh-release@v2" + uses: "softprops/action-gh-release@v3" if: github.ref == 'refs/heads/master' with: prerelease: true @@ -75,7 +75,7 @@ jobs: files: windows/Output/*.* token: "${{ secrets.GITHUB_TOKEN }}" - name: Release - uses: "softprops/action-gh-release@v2" + uses: "softprops/action-gh-release@v3" if: startsWith(github.ref, 'refs/tags/v') with: prerelease: false