forwardproxy/.github/workflows/lint.yml
dependabot[bot] 8f8155f3c1
Bump golangci/golangci-lint-action from 4 to 6 (#128)
Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 4 to 6.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/v4...v6)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-15 18:23:27 -05:00

61 lines
No EOL
1.2 KiB
YAML

name: Lint
on:
push:
branches:
- master
- main
paths-ignore:
- "**.md"
pull_request:
branches:
- master
- main
paths-ignore:
- "**.md"
permissions:
contents: read
jobs:
# From https://github.com/golangci/golangci-lint-action
golangci:
permissions:
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
name: lint
strategy:
matrix:
os:
- linux
- windows
include:
- os: linux
OS_LABEL: ubuntu-latest
- os: windows
OS_LABEL: windows-latest
runs-on: ${{ matrix.OS_LABEL }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '~1.22.0'
check-latest: true
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.55.2
args: --timeout 10m
# govulncheck:
# runs-on: ubuntu-latest
# steps:
# - name: govulncheck
# uses: golang/govulncheck-action@v1
# with:
# go-version-input: '~1.22.0'
# check-latest: true