From 5d51707ff62ee4c6d4dda862a726ec578e191d66 Mon Sep 17 00:00:00 2001 From: DAQEM <66999025+DAQEM@users.noreply.github.com> Date: Sat, 20 Dec 2025 19:30:10 +0100 Subject: [PATCH] chore: fix error in GitHub actions --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 13 +++---------- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c068d77..98a8a0c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.8' - name: Grant Permissions run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e9b7cf2..b436d00 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,15 +27,8 @@ jobs: java-version: '21' distribution: 'temurin' - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' - - - name: Grant Permissions - run: | - chmod +x gradlew - chmod +x relocate_natives/prepare.sh + - name: Grant Permissions to gradlew + run: chmod +x gradlew - name: Test run: ./gradlew :common:test @@ -45,4 +38,4 @@ jobs: if: always() with: files: | - common/build/test-results/**/*.xml \ No newline at end of file + common/build/test-results/**/*.xml