Bump vipyrsec/dragonfly-loader in /kubernetes/manifests/dragonfly/loa… #41
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: "CI - Kubernetes" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
name: "Lint manifests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v3 | |
- id: manifest-files | |
name: "Find manifest files" | |
run: | | |
echo "manifests<<EOF" >> $GITHUB_OUTPUT | |
python scripts/find_manifests.py >> $GITHUB_OUTPUT | |
echo "EOF" >> $GITHUB_OUTPUT | |
- uses: azure/[email protected] | |
with: | |
manifests: ${{ steps.manifest-files.outputs.manifests }} |