From b3cbed4b7dc24ff650738a00591288bed8011a21 Mon Sep 17 00:00:00 2001 From: Nicholas Wiersma Date: Wed, 3 Jun 2026 18:58:50 +0200 Subject: [PATCH] chore: update workflows --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 74021d6..bf15e0f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,6 +35,8 @@ jobs: matrix: go-version: [ "1.25", "1.26" ] runs-on: ubuntu-latest + env: + GOTESTSUM_VERSION: v1.13.0 steps: - name: Checkout code @@ -59,9 +61,7 @@ jobs: if: steps.install-go.outputs.cache-hit != 'true' - name: Setup gotestsum - uses: gertd/action-gotestsum@v3.0.0 - with: - gotestsum_version: v1.13.0 + run: go install gotest.tools/gotestsum@${{ env.GOTESTSUM_VERSION }} - name: Run Tests run: gotestsum --format pkgname -- -covermode=atomic -coverprofile=coverage.out -race ./...