chore(deps): bump argoproj/argocd from d40da8f
to 3d2839b
in /build/util
#1542
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: Integration tests | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
- 'release-*' | |
- 'rhos-*' | |
jobs: | |
lint_code: | |
name: Run golangci-lint on PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.52.2 | |
args: --timeout 5m --exclude SA5011 | |
only-new-issues: true | |