diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c8b88d9..a908242 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -384,19 +384,19 @@ jobs: version: ${{ needs.check-version-tag.outputs.version }} steps: - name: Download release notes artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: release-notes path: ./release-notes - name: Download Unity installer artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: unity-installer-package path: ./assets - name: Download signed UPM package artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: signed-upm-package path: ./assets @@ -411,7 +411,7 @@ jobs: ls -la ./assets - name: Create Tag and Release with all assets - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ needs.check-version-tag.outputs.version }} name: ${{ needs.check-version-tag.outputs.version }} @@ -432,21 +432,21 @@ jobs: if: always() steps: - name: Delete Unity Package artifacts - uses: geekyeggo/delete-artifact@v5 + uses: geekyeggo/delete-artifact@v6 with: name: unity-installer-package failOnError: false continue-on-error: true - name: Delete signed UPM package artifacts - uses: geekyeggo/delete-artifact@v5 + uses: geekyeggo/delete-artifact@v6 with: name: signed-upm-package failOnError: false continue-on-error: true - name: Delete release notes artifacts - uses: geekyeggo/delete-artifact@v5 + uses: geekyeggo/delete-artifact@v6 with: name: release-notes failOnError: false diff --git a/.github/workflows/test_unity_plugin.yml b/.github/workflows/test_unity_plugin.yml index c69d840..ba331fb 100644 --- a/.github/workflows/test_unity_plugin.yml +++ b/.github/workflows/test_unity_plugin.yml @@ -37,7 +37,7 @@ jobs: - uses: actions/checkout@v6 with: lfs: false - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.12' - name: Check version consistency