diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb2a4f5..c797416 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,8 +18,9 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.24.13' - + go-version-file: 'go.mod' + check-latest: true + - name: Run Tests run: chmod 0400 testdata/test.key && go test ./... diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index c8ed78a..a510210 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -20,7 +20,8 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.24.13' + go-version-file: 'go.mod' + check-latest: true - name: Setup Test Key run: chmod 0400 testdata/test.key diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 13239f7..b36cb86 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,8 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.24.13' + go-version-file: 'go.mod' + check-latest: true - name: Ensure build directory exists run: mkdir -p build