From 58bb0cfb55d21f4a7498ef732d69525244f45228 Mon Sep 17 00:00:00 2001 From: Joanna May Date: Wed, 24 Apr 2024 20:03:04 -0500 Subject: [PATCH] fix: global json for version increment --- .github/workflows/tests.yaml | 8 ++++---- global.json | 5 ++++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9107b3e..c31dacd 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -21,20 +21,20 @@ jobs: shell: bash steps: - name: ๐Ÿงพ Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: ๐Ÿ’ฝ Setup .NET SDK uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.407 + global-json-file: global.json - name: ๐Ÿ“ฆ Restore Dependencies run: dotnet restore - name: ๐Ÿค– Setup Godot - uses: chickensoft-games/setup-godot@v1 + uses: chickensoft-games/setup-godot@v2 with: - version: 4.0.1 + version: global.json - name: ๐Ÿ”ฌ Verify Setup run: | diff --git a/global.json b/global.json index b7e5ee5..c5682c3 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,9 @@ { + "msbuild-sdks": { + "Godot.NET.Sdk": "4.0.1" + }, "sdk": { "rollForward": "major", "version": "7.0.306" } -} +} \ No newline at end of file