bpf2c array map lookup optimization. #84
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
| # Copyright (c) eBPF for Windows contributors | |
| # SPDX-License-Identifier: MIT | |
| # | |
| # This workflow checks all Markdown files for broken links (internal, external, | |
| # and fragment references). It runs on PRs that touch .md files, on pushes to | |
| # main, and on a weekly schedule to catch links that go stale over time. | |
| --- | |
| name: Check Markdown links | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '**.md' | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| # Permit manual runs of the workflow. | |
| workflow_dispatch: | |
| schedule: | |
| # Run weekly on Sundays at midnight UTC. | |
| - cron: "0 0 * * 0" | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Check Markdown Links | |
| uses: tcort/github-action-markdown-link-check@e7c7a18363c842693fadde5d41a3bd3573a7a225 # v1 |