Skip to content

Bump github.com/go-playground/validator/v10 from 10.22.0 to 10.22.1 #1238

Bump github.com/go-playground/validator/v10 from 10.22.0 to 10.22.1

Bump github.com/go-playground/validator/v10 from 10.22.0 to 10.22.1 #1238

Workflow file for this run

name: golangci-lint
on:
pull_request:
jobs:
golangci:
strategy:
matrix:
go-version: ["1.23.x"] # linting in 1 go version is enough
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
name: lint
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.1
# Optional: working directory, useful for monorepos
# working-directory: somedir
# Optional: golangci-lint command line arguments. see https://golangci-lint.run/usage/quick-start
args: --enable gofmt,dupl,goconst,goconst,gocyclo
#--issues-exit-code=0
# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true
# Optional: if set to true then the action will use pre-installed Go
# skip-go-installation: true