Skip to content

Commit a4bc414

Browse files
authored
chore(project): upgrade to Unity 2021.3.34f1 (#5)
* Upgrade GitHub Actions to latest versions * chore(project): upgrade to Unity 2021.3.34f1
1 parent 8880ddc commit a4bc414

File tree

5 files changed

+17
-23
lines changed

5 files changed

+17
-23
lines changed

.github/workflows/ci.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
matrix:
1818
unityVersion:
1919
- 2021.3.3f1
20-
- 2021.3.31f1
21-
- 2022.3.10f1
22-
- 2023.1.16f1
20+
- 2021.3.34f1
21+
- 2022.3.18f1
22+
- 2023.2.7f1
2323
targetPlatform:
2424
- StandaloneLinux64
2525
- StandaloneWindows64
2626

2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 0
3131

@@ -38,10 +38,12 @@ jobs:
3838
Library-${{ matrix.targetPlatform }}-
3939
Library-
4040
41-
- uses: game-ci/unity-test-runner@v3
41+
- uses: game-ci/unity-test-runner@v4
4242
id: testRunner
4343
env:
4444
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
45+
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
46+
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
4547
with:
4648
testMode: EditMode
4749
unityVersion: ${{ matrix.unityVersion }}
@@ -69,7 +71,7 @@ jobs:
6971
git add -A
7072
git commit -m "chore(ci): switch to different unity version" || echo skipping commit
7173
72-
- uses: game-ci/unity-builder@v3
74+
- uses: game-ci/unity-builder@v4
7375
env:
7476
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
7577
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}

Packages/io.savolainen.unitygit-tests/Core/GitProcessTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public IEnumerator It_Times_Out_After_Given_Milliseconds()
6666
// Ping is used instead, which is pretty hacky.
6767
fileName = "ping";
6868
arguments = "-n 5 127.0.0.1";
69-
expectedLines = 3;
69+
expectedLines = 2;
7070
}
7171
else
7272
{

Packages/manifest.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
22
"dependencies": {
33
"com.marijnzwemmer.unity-toolbar-extender": "1.4.2",
4-
"com.unity.collab-proxy": "2.1.0",
5-
"com.unity.ide.rider": "3.0.26",
4+
"com.unity.ide.rider": "3.0.27",
65
"com.unity.ide.visualstudio": "2.0.22",
76
"com.unity.ide.vscode": "1.2.5",
87
"com.unity.test-framework": "1.1.33",
9-
"com.unity.testtools.codecoverage": "1.2.4",
10-
"com.unity.textmeshpro": "3.0.6",
8+
"com.unity.testtools.codecoverage": "1.2.5",
9+
"com.unity.textmeshpro": "3.0.7",
1110
"com.unity.ugui": "1.0.0",
1211
"io.savolainen.uicomponents": "1.0.0-beta.8",
1312
"com.unity.modules.ai": "1.0.0",

Packages/packages-lock.json

+3-10
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@
77
"dependencies": {},
88
"url": "https://package.openupm.com"
99
},
10-
"com.unity.collab-proxy": {
11-
"version": "2.1.0",
12-
"depth": 0,
13-
"source": "registry",
14-
"dependencies": {},
15-
"url": "https://packages.unity.com"
16-
},
1710
"com.unity.ext.nunit": {
1811
"version": "1.0.6",
1912
"depth": 1,
@@ -22,7 +15,7 @@
2215
"url": "https://packages.unity.com"
2316
},
2417
"com.unity.ide.rider": {
25-
"version": "3.0.26",
18+
"version": "3.0.27",
2619
"depth": 0,
2720
"source": "registry",
2821
"dependencies": {
@@ -65,7 +58,7 @@
6558
"url": "https://packages.unity.com"
6659
},
6760
"com.unity.testtools.codecoverage": {
68-
"version": "1.2.4",
61+
"version": "1.2.5",
6962
"depth": 0,
7063
"source": "registry",
7164
"dependencies": {
@@ -75,7 +68,7 @@
7568
"url": "https://packages.unity.com"
7669
},
7770
"com.unity.textmeshpro": {
78-
"version": "3.0.6",
71+
"version": "3.0.7",
7972
"depth": 0,
8073
"source": "registry",
8174
"dependencies": {

ProjectSettings/ProjectVersion.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2021.3.31f1
2-
m_EditorVersionWithRevision: 2021.3.31f1 (3409e2af086f)
1+
m_EditorVersion: 2021.3.34f1
2+
m_EditorVersionWithRevision: 2021.3.34f1 (25266724e7bd)

0 commit comments

Comments
 (0)