chore(deps): update github-actions #799
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: Check Tasks and Pipelines YAMLs | |
"on": | |
pull_request: | |
branches: [main] | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
check: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create k8s Kind Cluster | |
uses: helm/[email protected] | |
with: | |
cluster_name: kind | |
- name: Set up Tekton | |
uses: tektoncd/actions/setup-tektoncd@main | |
with: | |
pipeline_version: latest | |
- name: Apply all Task & Pipeline YAMLs | |
run: | | |
set -e | |
./.github/scripts/check_task_and_pipeline_yamls.sh |