diff --git a/.github/workflows/auto_release.yaml b/.github/workflows/auto_release.yaml index 5209f30..7ab0020 100644 --- a/.github/workflows/auto_release.yaml +++ b/.github/workflows/auto_release.yaml @@ -14,7 +14,7 @@ # You can disable this action by setting the DISABLE_AUTO_RELEASE repository # variable to true. -name: '๐Ÿฆพ Auto-Release' +name: "๐Ÿฆพ Auto-Release" on: workflow_run: workflows: ["๐Ÿšฅ Tests"] @@ -33,10 +33,8 @@ jobs: - name: ๐Ÿงพ Checkout uses: actions/checkout@v4 with: - # Use your GitHub Personal Access Token variable here. - token: ${{ secrets.GH_BASIC }} lfs: true - submodules: 'recursive' + submodules: "recursive" - name: ๐Ÿง‘โ€๐Ÿ”ฌ Check Test Results id: tests @@ -71,7 +69,7 @@ jobs: fi trigger_release: - uses: './.github/workflows/release.yaml' + uses: "./.github/workflows/release.yaml" needs: auto_release if: needs.auto_release.outputs.should_release == 'true' secrets: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3d979f0..4c9db3c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,4 +1,4 @@ -name: '๐Ÿ“ฆ Release' +name: "๐Ÿ“ฆ Release" on: # Make a release whenever the developer wants. workflow_dispatch: @@ -26,7 +26,7 @@ on: default: "patch" jobs: release: - name: '๐Ÿ“ฆ Release' + name: "๐Ÿ“ฆ Release" runs-on: ubuntu-latest env: DOTNET_CLI_TELEMETRY_OPTOUT: true @@ -35,9 +35,8 @@ jobs: - name: ๐Ÿงพ Checkout uses: actions/checkout@v4 with: - token: ${{ secrets.GH_BASIC }} lfs: true - submodules: 'recursive' + submodules: "recursive" fetch-depth: 0 # So we can get all tags. - name: ๐Ÿ”Ž Read Current Project Version diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index a3064f9..d32fa83 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -28,9 +28,8 @@ jobs: - name: ๐Ÿงพ Checkout uses: actions/checkout@v4 with: - token: ${{ secrets.GH_BASIC }} lfs: true - submodules: 'recursive' + submodules: "recursive" - name: ๐Ÿ’ฝ Setup .NET SDK uses: actions/setup-dotnet@v4 diff --git a/Chickensoft.GodotNodeInterfacesGenerator/Chickensoft.GodotNodeInterfacesGenerator.csproj b/Chickensoft.GodotNodeInterfacesGenerator/Chickensoft.GodotNodeInterfacesGenerator.csproj index 192d2ba..6eff3fb 100644 --- a/Chickensoft.GodotNodeInterfacesGenerator/Chickensoft.GodotNodeInterfacesGenerator.csproj +++ b/Chickensoft.GodotNodeInterfacesGenerator/Chickensoft.GodotNodeInterfacesGenerator.csproj @@ -18,7 +18,7 @@ - + diff --git a/global.json b/global.json index c96473f..b2f4ad4 100644 --- a/global.json +++ b/global.json @@ -1,9 +1,9 @@ { "sdk": { - "version": "9.0.101", + "version": "8.0.404", "rollForward": "latestMinor" }, "msbuild-sdks": { "Godot.NET.Sdk": "4.3.0" } -} \ No newline at end of file +} diff --git a/renovate.json b/renovate.json index 6e2564c..4f4dc47 100644 --- a/renovate.json +++ b/renovate.json @@ -19,7 +19,13 @@ "matchPackagePrefixes": [ "dotnet-sdk" ], - "allowedVersions": "!/preview/" + "allowedVersions": "<9" + }, + { + "matchPackageNames": [ + "Microsoft.CodeAnalysis.CSharp" + ], + "allowedVersions": "<4.12.0" }, { "matchPackagePrefixes": [ @@ -35,4 +41,4 @@ "allowedVersions": "/^(\\d+\\.\\d+\\.\\d+)(-godot(\\d+\\.)+\\d+(-.*)?)?$/" } ] -} \ No newline at end of file +}