Skip to content

chore(deps): update dependency golangci/golangci-lint to v1.62.2 in .github/workflows/lint.yml #561

chore(deps): update dependency golangci/golangci-lint to v1.62.2 in .github/workflows/lint.yml

chore(deps): update dependency golangci/golangci-lint to v1.62.2 in .github/workflows/lint.yml #561

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
# Required: allow read access to the content for analysis.
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
# Optional: Allow write access to checks to allow the action to annotate code in the PR.
checks: write
jobs:
# ------------------------------
golangci-lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
# renovate: datasource=github-releases depName=golangci/golangci-lint
version: v1.62.2
args: --timeout=5m
# ------------------------------