Skip to content

Update to Unity 6000.1.15f1 #2270

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 12, 2025
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
id: version-select
run: |
$ProgressPreference = 'SilentlyContinue'
$json = Invoke-WebRequest -UseBasicParsing 'https://services.api.unity.com/unity/editor/release/v1/releases?stream=LTS&limit=1&offset=0&platform=WINDOWS&version=${{ matrix.unity-prefix }}'
$json = Invoke-WebRequest -UseBasicParsing 'https://services.api.unity.com/unity/editor/release/v1/releases?limit=1&offset=0&platform=WINDOWS&version=${{ matrix.unity-prefix }}'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Unity API Fetches Unstable Versions

The removal of the stream=LTS parameter from the Unity API URL in the dependency update workflow causes it to fetch any release type (e.g., pre-release, beta, non-LTS) instead of only Long Term Support (LTS) releases. This results in the workflow selecting unstable Unity versions, particularly for established LTS versions like 2020.3, 2021.3, and 2022.3, which are intended to use stable LTS releases.

Fix in Cursor Fix in Web

$latest = ($json.Content | ConvertFrom-Json).results[0]
echo "Latest version: $latest"
"version=$($latest.version)" >> $env:GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci-env.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ switch ($name) {
return "6000.0.54f1"
}
"unity6000.1" {
return "6000.1.12f1"
return "6000.1.15f1"
}
Default {
throw "Unkown variable '$name'"
Expand Down
Loading