Skip to content

vendor: bump go.uber.org/zap from 1.27.0 to 1.27.1 #2080

vendor: bump go.uber.org/zap from 1.27.0 to 1.27.1

vendor: bump go.uber.org/zap from 1.27.0 to 1.27.1 #2080

Workflow file for this run

---
# codespell is a GitHub Actions that runs codespell tool to catch misspell
# Reference https://github.com/codespell-project/actions-codespell
name: Codespell
# yamllint disable-line rule:truthy
on:
pull_request:
branches:
- '*'
jobs:
codespell:
name: codespell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: codespell
uses: codespell-project/actions-codespell@master
with:
skip: .git,go.mod,go.sum,vendor,*.svg
ignore_words_list: NotIn
check_filenames: true
check_hidden: true