From 4ead7121e58b2eec64e3de95ba44de5ed64e373e Mon Sep 17 00:00:00 2001 From: Artifizer Date: Sun, 21 Dec 2025 03:20:12 +0200 Subject: [PATCH 1/2] chore: update .github/workflows/ci.yml Signed-off-by: Artifizer --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51fbc77..b3c3723 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ env: jobs: test: - name: Test Suite (${{ matrix.os }}, go=${{ env.GO_VERSION }}) + name: Test Suite (${{ matrix.os }}) runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -173,7 +173,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.12' + python-version: '3.11' - name: Install pytest and dependencies run: pip install pytest requests httprunner From b22a0f71d316002068d4d6db6d2e38936ab56cf9 Mon Sep 17 00:00:00 2001 From: Artifizer Date: Sun, 21 Dec 2025 03:34:29 +0200 Subject: [PATCH 2/2] chore: CI - use the same go version as for regular build Signed-off-by: Artifizer --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3c3723..1eddb81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ permissions: contents: read env: - GO_VERSION: '1.23' + GO_VERSION: '1.25' jobs: test: