Skip to content

Update actions/cache action to v6 #993

Update actions/cache action to v6

Update actions/cache action to v6 #993

Workflow file for this run

---
name: YAML lint
on: # yamllint disable-line rule:truthy
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
workflow_dispatch:
jobs:
lint:
name: YAML Lint
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.14
- name: Install pipenv
run: >
sudo apt install pipenv
- name: Install yamllint
run: >
pipenv sync --dev
- name: Lint YAML files
run: >
yamllint --strict .
&& echo '✔ Your code looks good.'