From 448e6e92f1d183ef5052d0a3d9aeb75e84ebef9b Mon Sep 17 00:00:00 2001 From: Janos Guljas Date: Tue, 27 Jun 2023 11:06:23 +0200 Subject: [PATCH] Update GitHub workflow --- .github/workflows/go.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 6158186..8761105 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,9 +12,9 @@ jobs: steps: - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: '1.20' + go-version: '1.21.0-rc.2' - name: Checkout uses: actions/checkout@v1 @@ -31,11 +31,12 @@ jobs: ${{ runner.OS }}-build- ${{ runner.OS }}- - - name: Lint - uses: golangci/golangci-lint-action@v2 - with: - version: v1.52.1 - args: --timeout 10m + # TODO: enable with Go 1.21 final release + # - name: Lint + # uses: golangci/golangci-lint-action@v2 + # with: + # version: v1.53.3 + # args: --timeout 10m - name: Vet if: matrix.os == 'ubuntu-latest'