diff --git a/.github/workflows/publish-upm.yml b/.github/workflows/publish-upm.yml index ee83094..0583700 100644 --- a/.github/workflows/publish-upm.yml +++ b/.github/workflows/publish-upm.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Validate manifest & structure run: | @@ -85,12 +85,12 @@ jobs: sudo docker image prune --all --force 2>/dev/null || true - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: lfs: true - name: Cache Library - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: Library key: Library-${{ hashFiles('Packages/**', 'ProjectSettings/**') }} @@ -112,7 +112,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-results path: artifacts @@ -126,7 +126,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} @@ -348,7 +348,7 @@ jobs: - name: Create GitHub Release if: steps.version.outputs.skip != 'true' - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v3 with: tag_name: v${{ steps.version.outputs.version }} name: v${{ steps.version.outputs.version }} diff --git a/.github/workflows/webgl-pages.yml b/.github/workflows/webgl-pages.yml index 02c536d..e63ea25 100644 --- a/.github/workflows/webgl-pages.yml +++ b/.github/workflows/webgl-pages.yml @@ -38,7 +38,7 @@ jobs: df -h / - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: lfs: true @@ -64,7 +64,7 @@ jobs: exit 1 - name: Build WebGL project - uses: game-ci/unity-builder@v4 + uses: game-ci/unity-builder@v5 env: UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} @@ -97,10 +97,10 @@ jobs: touch site-dist/.nojekyll - name: Configure GitHub Pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 - name: Upload GitHub Pages artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: site-dist @@ -114,4 +114,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5