Upgrade dependencies #677
Workflow file for this run
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: Golangci-lint | |
# golangci-lint is a fast Go linters runner. It runs linters in parallel, | |
# uses caching, supports yaml config, has integrations with all major IDE and | |
# has dozens of linters included. | |
# see: https://github.com/golangci/golangci-lint-action | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go 1.20+ | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.20" # The Go version to download (if necessary) and use. | |
check-latest: true | |
cache: false | |
- run: go version | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v5 | |
with: | |
version: latest | |
args: --timeout=5m |