Update dependency flux-local to v7 #2580
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: Cluster Manifest | |
on: | |
pull_request: | |
branches: | |
- main | |
- 'renovate/**' | |
push: | |
branches: | |
- main | |
- 'renovate/**' | |
jobs: | |
yaml: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Flux CLI | |
uses: fluxcd/flux2/action@v2.4.0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
cache: pip | |
cache-dependency-path: requirements.txt | |
- name: Install python requirements | |
run: | | |
pip install -r requirements.txt | |
- name: Generate cluster manifest | |
run: | | |
hack/update-manifest.sh validate |