Bump golangci/golangci-lint-action from 3b4f037d0e94e85d98f9824ef87b2dc32d53fbd5 to 456fc0f7358ebf6cdd48ca0d2d56e88a6c7aa077 #937
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: Analysis | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: 13 7 * * 6 | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@456fc0f7358ebf6cdd48ca0d2d56e88a6c7aa077 | |
with: | |
version: v1.62.2 | |
- name: shellcheck | |
uses: azohra/shell-linter@6bbeaa868df09c34ddc008e6030cfe89c03394a1 | |
with: | |
path: scripts/test-* | |
severity: error | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_file: .yamllint.yml | |
vulnerabilities: | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: initialize | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: go | |
- name: codeql analyze | |
uses: github/codeql-action/analyze@v3 |