From eaa553dc8390d2eafe1c86c5c9db3683732943c5 Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Tue, 24 Sep 2024 18:30:54 +0900 Subject: [PATCH 1/2] ci: remove Unity 2021 LTS from Build matrix --- .github/workflows/build-debug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index e3bd6a6b..09bd3f87 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false max-parallel: 2 matrix: - unity: ["2021.3.41f1", "2022.3.39f1", "6000.0.12f1"] # Test with LTS + unity: ["2022.3.39f1", "6000.0.12f1"] # Test with LTS runs-on: ubuntu-latest timeout-minutes: 20 steps: @@ -44,7 +44,7 @@ jobs: # Execute scripts: Export Package # /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod PackageExporter.Export - name: Build Unity (.unitypacakge) - if: ${{ startsWith(matrix.unity, '2021') }} # only execute once + if: ${{ startsWith(matrix.unity, '2022') }} # only execute once uses: Cysharp/Actions/.github/actions/unity-builder@main env: UNITY_EMAIL: ${{ steps.op-load-secret.outputs.UNITY_EMAIL }} From 5984b67ecb857310d4a3f204f6b827e70c07779d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 11:45:57 +0000 Subject: [PATCH 2/2] feat: Update package.json to 2.5.8 --- src/UniTask/Assets/Plugins/UniTask/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UniTask/Assets/Plugins/UniTask/package.json b/src/UniTask/Assets/Plugins/UniTask/package.json index 04085042..e7add03c 100644 --- a/src/UniTask/Assets/Plugins/UniTask/package.json +++ b/src/UniTask/Assets/Plugins/UniTask/package.json @@ -2,7 +2,7 @@ "name": "com.cysharp.unitask", "displayName": "UniTask", "author": { "name": "Cysharp, Inc.", "url": "https://cysharp.co.jp/en/" }, - "version": "2.5.7", + "version": "2.5.8", "unity": "2018.4", "description": "Provides an efficient async/await integration to Unity.", "keywords": [ "async/await", "async", "Task", "UniTask" ],