From cd4e9ef9bdcd22e824b3b0cf2c79d5e4bde6aae6 Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Tue, 7 Mar 2023 16:24:59 +0200 Subject: [PATCH] Use Godot 3.x's gdtoolkit. gdtoolkit got updated to Godot 4.x, so we need to explicitly state that we are installing the Godot 3.x version. --- .github/workflows/static-checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static-checks.yml b/.github/workflows/static-checks.yml index 171b42cc8..67cef490c 100644 --- a/.github/workflows/static-checks.yml +++ b/.github/workflows/static-checks.yml @@ -14,13 +14,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - run: pip3 install gdtoolkit + - run: pip3 install "gdtoolkit==3.*" - run: gdformat --diff . lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - run: pip3 install gdtoolkit + - run: pip3 install "gdtoolkit==3.*" - run: gdlint . codespell: runs-on: ubuntu-latest