From aad6a8d961bd57f90ab6012a7a88899599a53182 Mon Sep 17 00:00:00 2001 From: Prashant V Date: Tue, 8 Oct 2024 22:23:50 -0700 Subject: [PATCH] Set go version to minimum --- .github/workflows/action.yaml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/action.yaml b/.github/workflows/action.yaml index e9bcc77..25ce7aa 100644 --- a/.github/workflows/action.yaml +++ b/.github/workflows/action.yaml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ['1.22', '1.23'] + go: ['1.22.x', '1.23.x'] name: Go ${{ matrix.go }} tests steps: - uses: actions/checkout@v4 diff --git a/go.mod b/go.mod index a40306a..2e27d8d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/prashantv/gostub -go 1.23.2 +go 1.22 require github.com/stretchr/testify v1.9.0