build(deps): update module go.uber.org/zap to v1.26.0 (#417) #2356
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches-ignore: | |
- renovate/** | |
paths: | |
- "**.go" | |
- "**.go.json" | |
- "go.mod" | |
- "go.sum" | |
- ".golangci.yaml" | |
- ".github/workflows/lint.yaml" | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "**.go" | |
- "**.go.json" | |
- "go.mod" | |
- "go.sum" | |
- ".golangci.yaml" | |
- ".github/workflows/lint.yaml" | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: "go.mod" | |
cache: false | |
- name: Go Build Cache (lint) | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg | |
key: go-cache-119-${{ hashFiles('**/go.sum') }}-lint | |
restore-keys: | | |
go-cache-119-${{ hashFiles('**/go.sum') }}- | |
go-cache-119- | |
- run: go get -t ./... | |
- name: Run linters | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.53.3 | |
skip-pkg-cache: true | |
skip-build-cache: true |