This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
chore(deps): update dependency defenseunicorns/zarf to v0.38.3 #705
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 DUBBD k3d | |
on: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- ".gitignore" | |
- "LICENSE" | |
- "**/*.md" | |
- "**/*.json" | |
- "**/*.png" | |
- "**/*.svg" | |
- "aws/**" | |
- "rke2/**" | |
- "oscal-component.y*ml" | |
- ".github/workflows/*aws*.y*ml" | |
- ".github/workflows/*rke2*.y*ml" | |
- ".github/workflows/*infra*.y*ml" | |
- ".github/test-infra/**" | |
- "**/*oscal-component.y*aml" | |
jobs: | |
yaml-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install yamllint | |
run: pip install yamllint | |
- name: Lint YAML files | |
run: yamllint . -c .yamllint --no-warnings | |
test-release: | |
permissions: | |
id-token: write | |
contents: read | |
needs: yaml-lint | |
if: needs.yaml-lint.result == 'success' || needs.yaml-lint.result == 'skipped' | |
uses: ./.github/workflows/test-k3d-package.yaml | |
secrets: inherit |