From ea6505b730a9cd90cbc96b69a32193550138d7a7 Mon Sep 17 00:00:00 2001 From: Alessandro Sanino Date: Thu, 14 Sep 2023 15:05:39 +0200 Subject: [PATCH] ci: :arrow_up: Updated supported Golang versions Signed-off-by: Alessandro Sanino --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 47f377a..19194e1 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,17 +14,17 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go_version: [1.17, 1.18, 1.19] + go_version: ["1.19", "1.20", "1.21"] os: [ubuntu-20.04, macOS-latest] steps: - name: Set up Go ${{ matrix.go_version }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: ${{ matrix.go_version }} id: go - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run Unit Tests run: ./scripts/runUnitTests.sh