From b7b57e2534bdda3fb42441be5ad14731d3562b61 Mon Sep 17 00:00:00 2001 From: "Stefan M." Date: Mon, 18 Nov 2024 13:39:29 +0100 Subject: [PATCH] Update CI (#332) * Testing more go versions * Use latest ubuntu machine * Update setup-go action --- .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 a9d6aa95..92827cc1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,16 +7,16 @@ jobs: test: strategy: matrix: - go: [ '1.18', '1.19', '1.20', '1.21' ] + go: [ '1.18', '1.19', '1.20', '1.21', '1.22', '1.23' ] - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest name: Go ${{ matrix.go }} Tests steps: - uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} check-latest: true