From cb77df302e8b246b277aca288c1ee84f7a8cecf0 Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Wed, 18 Dec 2024 10:35:05 -0800 Subject: [PATCH] .github: update Go version in tests No need for a matrix when we are only testing one version. --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df2ab32..5f142f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,16 +2,13 @@ on: [push, pull_request] name: Test jobs: test: - strategy: - matrix: - go-version: [1.18.x] runs-on: ubuntu-latest steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: - go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v2 + go-version: '1.23.x' + - uses: actions/checkout@v4 with: path: './src/github.com/segmentio/conf' - run: echo "PATH=$GITHUB_WORKSPACE/bin:$PATH" >> $GITHUB_ENV