feat: ensure Cilium kube-proxy is enabled when kube-proxy is disabled… #931
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 2023 Nutanix. All rights reserved. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: govulncheck | |
| on: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '0 0 * * *' | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| govulncheck: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| module: [api, common, .] | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install devbox | |
| uses: jetify-com/[email protected] | |
| with: | |
| enable-cache: true | |
| - id: govulncheck | |
| run: devbox run -- make govulncheck.${{ matrix.module }} |