From cd1935d1e08d012b7b9166ab35114095b2890cc0 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 28 Jul 2023 11:36:05 +0200 Subject: [PATCH] [godot] Install Dotnet 6 in each job. --- .github/actions/setup-godot-deps/action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-godot-deps/action.yml b/.github/actions/setup-godot-deps/action.yml index ee33c1f38..8fd40040e 100644 --- a/.github/actions/setup-godot-deps/action.yml +++ b/.github/actions/setup-godot-deps/action.yml @@ -24,4 +24,9 @@ runs: run: | python -c "import sys; print(sys.version)" python -m pip install scons==4.4.0 - scons --version \ No newline at end of file + scons --version + + - name: Setup dotnet 6 + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '6.0.x' \ No newline at end of file