Skip to content

build(deps): bump tj-actions/changed-files from 45.0.2 to 45.0.3 #2982

build(deps): bump tj-actions/changed-files from 45.0.2 to 45.0.3

build(deps): bump tj-actions/changed-files from 45.0.2 to 45.0.3 #2982

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
name: Lint compositional_skills and knowledge
on:
workflow_dispatch:
push:
branches:
- main
paths:
- compositional_skills/**/qna.yaml
- knowledge/**/qna.yaml
- '.github/workflows/lint.yml' # This workflow
- 'scripts/**' # Scripts used by this workflow
pull_request:
branches:
- main
paths:
- compositional_skills/**/*.yaml
- compositional_skills/**/*.yml
- knowledge/**/*.yaml
- knowledge/**/*.yml
- '.github/workflows/lint.yml' # This workflow
- 'scripts/**' # Scripts used by this workflow
env:
LC_ALL: en_US.UTF-8
defaults:
run:
shell: bash
permissions:
contents: read
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- name: "Harden Runner"
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: "Checkout"
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 0
- name: "Setup Python"
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: "3.11"
- name: "Install Python Packages"
run: |
pip install -r scripts/requirements.txt
- name: "Find changed skills and knowledge files"
id: changed-files
uses: tj-actions/changed-files@c3a1bb2c992d77180ae65be6ae6c166cf40f857c # v45.0.3
with:
files: |
compositional_skills/**/*.yaml
compositional_skills/**/*.yml
knowledge/**/*.yaml
knowledge/**/*.yml
- name: "Check changed YAML file contents"
if: ${{ fromJSON(steps.changed-files.outputs.any_changed) }}
run: |
scripts/check-yaml.py ${{ steps.changed-files.outputs.all_changed_files }}
env:
TAXONOMY_FOLDERS: >-
compositional_skills
knowledge
- name: "Check all YAML file contents"
if: ${{ !fromJSON(steps.changed-files.outputs.any_changed) }}
run: |
read -ra folders <<< "${TAXONOMY_FOLDERS}"
# shellcheck disable=SC2046
scripts/check-yaml.py $(find "${folders[@]}" -name "qna.yaml" -print)
env:
SCHEMA_VERSION: 0 # use the schema version specified in the "version" key
TAXONOMY_FOLDERS: >-
compositional_skills
knowledge
- name: "Save Pull Request number"
if: ${{ (github.event_name == 'pull_request') && (github.repository == 'instructlab/taxonomy') }}
run: |
echo "${PULL_REQUEST_NUMBER}" > pull_request_number.txt
env:
PULL_REQUEST_NUMBER: ${{ fromJSON(steps.changed-files.outputs.any_changed) && github.event.number || '0' }}
- name: "Upload Pull Request number"
if: ${{ (github.event_name == 'pull_request') && (github.repository == 'instructlab/taxonomy') }}
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: pull_request_number
path: pull_request_number.txt
if-no-files-found: error
retention-days: 5