This repository has been archived by the owner on Jan 23, 2025. It is now read-only.
fix(rego): Ignore case when scanning k8s subtype (#1516) #3977
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 | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
- main | |
pull_request: | |
merge_group: | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
cache: true | |
cache-dependency-path: go.sum | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54 | |
skip-cache: true | |
args: --timeout 10m --verbose |