Skip to content

Commit 8b4792f

Browse files
authored
Merge pull request #98 from xodial/xodial/net8-downgrade
Downgrade to latest net8 to stay synced with GodotSharp
2 parents 8950067 + 78cb653 commit 8b4792f

File tree

6 files changed

+18
-16
lines changed

6 files changed

+18
-16
lines changed

.github/workflows/auto_release.yaml

+3-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# You can disable this action by setting the DISABLE_AUTO_RELEASE repository
1515
# variable to true.
1616

17-
name: '🦾 Auto-Release'
17+
name: "🦾 Auto-Release"
1818
on:
1919
workflow_run:
2020
workflows: ["🚥 Tests"]
@@ -33,10 +33,8 @@ jobs:
3333
- name: 🧾 Checkout
3434
uses: actions/checkout@v4
3535
with:
36-
# Use your GitHub Personal Access Token variable here.
37-
token: ${{ secrets.GH_BASIC }}
3836
lfs: true
39-
submodules: 'recursive'
37+
submodules: "recursive"
4038

4139
- name: 🧑‍🔬 Check Test Results
4240
id: tests
@@ -71,7 +69,7 @@ jobs:
7169
fi
7270
7371
trigger_release:
74-
uses: './.github/workflows/release.yaml'
72+
uses: "./.github/workflows/release.yaml"
7573
needs: auto_release
7674
if: needs.auto_release.outputs.should_release == 'true'
7775
secrets:

.github/workflows/release.yaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: '📦 Release'
1+
name: "📦 Release"
22
on:
33
# Make a release whenever the developer wants.
44
workflow_dispatch:
@@ -26,7 +26,7 @@ on:
2626
default: "patch"
2727
jobs:
2828
release:
29-
name: '📦 Release'
29+
name: "📦 Release"
3030
runs-on: ubuntu-latest
3131
env:
3232
DOTNET_CLI_TELEMETRY_OPTOUT: true
@@ -35,9 +35,8 @@ jobs:
3535
- name: 🧾 Checkout
3636
uses: actions/checkout@v4
3737
with:
38-
token: ${{ secrets.GH_BASIC }}
3938
lfs: true
40-
submodules: 'recursive'
39+
submodules: "recursive"
4140
fetch-depth: 0 # So we can get all tags.
4241

4342
- name: 🔎 Read Current Project Version

.github/workflows/tests.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
- name: 🧾 Checkout
2929
uses: actions/checkout@v4
3030
with:
31-
token: ${{ secrets.GH_BASIC }}
3231
lfs: true
33-
submodules: 'recursive'
32+
submodules: "recursive"
3433

3534
- name: 💽 Setup .NET SDK
3635
uses: actions/setup-dotnet@v4

Chickensoft.GodotNodeInterfacesGenerator/Chickensoft.GodotNodeInterfacesGenerator.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<!-- Dependencies go here. -->
1919
<PackageReference Include="GodotSharp" Version="4.3.0" />
2020
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
21-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
21+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" PrivateAssets="all" />
2222
<!-- Lets us get XML documentation easily. -->
2323
<PackageReference Include="Towel" Version="1.0.40" />
2424
</ItemGroup>

global.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"sdk": {
3-
"version": "9.0.101",
3+
"version": "8.0.404",
44
"rollForward": "latestMinor"
55
},
66
"msbuild-sdks": {
77
"Godot.NET.Sdk": "4.3.0"
88
}
9-
}
9+
}

renovate.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@
1919
"matchPackagePrefixes": [
2020
"dotnet-sdk"
2121
],
22-
"allowedVersions": "!/preview/"
22+
"allowedVersions": "<9"
23+
},
24+
{
25+
"matchPackageNames": [
26+
"Microsoft.CodeAnalysis.CSharp"
27+
],
28+
"allowedVersions": "<4.12.0"
2329
},
2430
{
2531
"matchPackagePrefixes": [
@@ -35,4 +41,4 @@
3541
"allowedVersions": "/^(\\d+\\.\\d+\\.\\d+)(-godot(\\d+\\.)+\\d+(-.*)?)?$/"
3642
}
3743
]
38-
}
44+
}

0 commit comments

Comments
 (0)