chore(deps): update everything #1077
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 and Check | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Checkout codebase | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Run GolangCI-Lint Scanner | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
# Required: the version of golangci-lint is required and must be specified without patch version. | |
version: v1.62 | |
# Optional: working directory, useful for monorepos | |
# working-directory: ./... | |
# Optional: golangci-lint command line arguments. | |
args: --timeout 3m00s | |
# Optional: show only new issues if it's a pull request. The default value is `false`. | |
# only-new-issues: true |