libbeat/reader/auditd: add multi-record coalescing mode #51957
Workflow file for this run
This file contains hidden or 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: | |
| workflow_dispatch: | |
| #push: | |
| # branches: | |
| # - main | |
| # - 8.* | |
| pull_request: | |
| paths: | |
| - '**/*.go' | |
| - '**/go.mod' | |
| - '**/go.sum' | |
| - '.go-version' | |
| - '.golangci.yml' | |
| - '.github/workflows/golangci-lint.yml' | |
| permissions: | |
| contents: read | |
| # Optional: allow read access to pull request. Use with `only-new-issues` option. | |
| pull-requests: read | |
| jobs: | |
| golangci: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| fail-fast: false | |
| name: lint | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: .go-version | |
| - name: Install Apt Package | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install -y libpcap-dev librpm-dev | |
| - name: golangci-lint | |
| env: | |
| CGO_ENABLED: 1 | |
| # Pin the full commit hash | |
| # https://docs.github.com/en/actions/security-for-github-actions/security-guides/security-hardening-for-github-actions#using-third-party-actions | |
| uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9.3.0 | |
| with: | |
| # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version | |
| version-file: .golangci-lint-version | |
| # Give the job more time to execute. | |
| # Issues are reported only on the lines the pull request changed. | |
| args: --timeout=90m | |
| # Optional: show only new issues if it's a pull request. The default value is `false`. | |
| only-new-issues: true |