feat: support network interface configuration #12155
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: "CodeQL" | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'release-v*' | |
| - 'staging/*' | |
| pull_request: | |
| schedule: | |
| - cron: '0 12 * * *' | |
| jobs: | |
| analyze-go: | |
| name: Analyze Go | |
| if: github.repository == 'aws/karpenter-provider-aws' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read # github/codeql-action/init@v2 | |
| security-events: write # github/codeql-action/init@v2 | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: ./.github/actions/install-deps | |
| - run: make vulncheck | |
| - uses: github/codeql-action/init@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10 | |
| with: | |
| languages: go | |
| - uses: github/codeql-action/autobuild@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10 | |
| - uses: github/codeql-action/analyze@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10 | |
| # Javascript is added here for evaluating Github Action vulnerabilities | |
| # https://github.blog/2023-08-09-four-tips-to-keep-your-github-actions-workflows-secure/#2-enable-code-scanning-for-workflows | |
| analyze-github-actions: | |
| name: Analyze Github Actions | |
| if: github.repository == 'aws/karpenter-provider-aws' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read # github/codeql-action/init@v3 | |
| security-events: write # github/codeql-action/init@v3 | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: github/codeql-action/init@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10 | |
| with: | |
| languages: actions | |
| - uses: github/codeql-action/analyze@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10 |