2525 tag_exists : ${{ steps.tag_exists.outputs.exists }}
2626 steps :
2727 - name : Checkout repository
28- uses : actions/checkout@v5
28+ uses : actions/checkout@v6
2929 with :
3030 fetch-depth : 0
3131 fetch-tags : true
@@ -38,11 +38,11 @@ jobs:
3838
3939 - name : Find previous version tag
4040 id : prev_tag
41- uses : WyriHaximus/github-action-get-previous-tag@v1
41+ uses : WyriHaximus/github-action-get-previous-tag@v2
4242
4343 - name : Check if tag exists
4444 id : tag_exists
45- uses : mukunku/tag-exists-action@v1.6 .0
45+ uses : mukunku/tag-exists-action@v1.7 .0
4646 with :
4747 tag : ${{ steps.get_version.outputs.current-version }}
4848
5252 if : needs.check-version-tag.outputs.tag_exists == 'false'
5353 steps :
5454 - name : Checkout repository
55- uses : actions/checkout@v5
55+ uses : actions/checkout@v6
5656
5757 - name : Activate Unity license
5858 id : activate
7474 shell : bash
7575
7676 - name : Cache Unity Library
77- uses : actions/cache@v4
77+ uses : actions/cache@v5
7878 with :
7979 path : ./Installer/Library
8080 key : Library-Unity-Installer
@@ -120,7 +120,7 @@ jobs:
120120 customParameters : -CI true -GITHUB_ACTIONS true
121121
122122 - name : Upload Unity Package as artifact
123- uses : actions/upload-artifact@v4
123+ uses : actions/upload-artifact@v6
124124 with :
125125 name : unity-installer-package
126126 path : ./Installer/build/AI-Game-Dev-Installer.unitypackage
@@ -131,10 +131,10 @@ jobs:
131131 if : needs.check-version-tag.outputs.tag_exists == 'false'
132132 steps :
133133 - name : Checkout repository
134- uses : actions/checkout@v5
134+ uses : actions/checkout@v6
135135
136136 - name : Setup .NET
137- uses : actions/setup-dotnet@v4
137+ uses : actions/setup-dotnet@v5
138138 with :
139139 dotnet-version : " 9.0.x"
140140
@@ -146,7 +146,7 @@ jobs:
146146 run : cd Unity-MCP-Server && ./build-all.sh Release
147147
148148 - name : Upload build zips as artifact
149- uses : actions/upload-artifact@v4
149+ uses : actions/upload-artifact@v6
150150 with :
151151 name : mcp-server-zips
152152 path : ./Unity-MCP-Server/publish/*.zip
@@ -267,7 +267,7 @@ jobs:
267267 release_notes : ${{ steps.rel_desc.outputs.release_body }}
268268 steps :
269269 - name : Checkout repository
270- uses : actions/checkout@v5
270+ uses : actions/checkout@v6
271271 with :
272272 fetch-depth : 0
273273 fetch-tags : true
@@ -330,7 +330,7 @@ jobs:
330330 if : needs.release-unity-plugin.outputs.success == 'true'
331331 steps :
332332 - name : Download Unity Package artifact
333- uses : actions/download-artifact@v4
333+ uses : actions/download-artifact@v6
334334 with :
335335 name : unity-installer-package
336336 path : ./
@@ -349,10 +349,10 @@ jobs:
349349 if : needs.release-unity-plugin.outputs.success == 'true'
350350 steps :
351351 - name : Checkout repository
352- uses : actions/checkout@v5
352+ uses : actions/checkout@v6
353353
354354 - name : Download build zips artifact
355- uses : actions/download-artifact@v4
355+ uses : actions/download-artifact@v6
356356 with :
357357 name : mcp-server-zips
358358 path : ./Unity-MCP-Server/publish
0 commit comments