Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/publish-upm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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/**') }}
Expand All @@ -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
Expand All @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/webgl-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
df -h /

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
lfs: true

Expand All @@ -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 }}
Expand Down Expand Up @@ -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

Expand All @@ -114,4 +114,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
Loading