From 73ede75713e43fc0046ff88269b54fbb430a1560 Mon Sep 17 00:00:00 2001 From: Ivan Sim Date: Fri, 17 May 2024 22:20:22 -0700 Subject: [PATCH] Update setup-go and golangci-lint actions Signed-off-by: Ivan Sim --- .github/workflows/build.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index af701ab..7540f99 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -9,9 +9,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version: '1.22' + - uses: golangci/golangci-lint-action@v6 + with: + version: v1.58 - run: make codegen-verify - run: make test - run: make build