Skip to content

Bump github.com/go-playground/validator/v10 from 10.19.0 to 10.20.0 #71

Bump github.com/go-playground/validator/v10 from 10.19.0 to 10.20.0

Bump github.com/go-playground/validator/v10 from 10.19.0 to 10.20.0 #71

Workflow file for this run

name: Lint (go.mod/go.sum)
on:
pull_request:
paths:
- 'go.mod'
- 'go.sum'
jobs:
gomod-lint:
name: Validate go module file consistency
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Check go.mod/go.sum to be consistent
run: go mod tidy -v && git diff --exit-code