From fb9aed4e5c45118c05d9aa78ad3a4f3d3a44bda0 Mon Sep 17 00:00:00 2001 From: Bojan Zivanovic Date: Thu, 31 Oct 2024 23:17:56 +0100 Subject: [PATCH] Update CI. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8d18eea..2cf5a33 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: - name: Install Go uses: actions/setup-go@v4 with: - go-version: 1.20.x + go-version: 1.23.x - name: Install tools run: | @@ -36,19 +36,19 @@ jobs: test: strategy: matrix: - go: ['1.18', '1.19', '1.20'] + go: ['1.23', '1.22', '1.21'] name: test @ Go ${{ matrix.go }} runs-on: ubuntu-latest steps: - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - name: Checkout code uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-build-${{ hashFiles('**/go.sum') }}