Skip to content

ci: Adding suppport for Ansible Core 2.18 #650

ci: Adding suppport for Ansible Core 2.18

ci: Adding suppport for Ansible Core 2.18 #650

Workflow file for this run

---
name: 'markdownlint'
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- 'main'
paths:
- '**.md'
- '.github/workflows/markdownlint.yml'
workflow_dispatch: {}
permissions:
contents: 'read'
jobs:
build:
name: 'markdownlint'
runs-on: 'ubuntu-24.04'
permissions:
contents: 'read'
steps:
- name: 'Harden Runner'
uses: 'step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7' # v2.10.1
with:
egress-policy: 'block'
disable-sudo: true
allowed-endpoints: >
github.com:443
- name: 'Checkout the repository'
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2
- name: 'Run markdownlint'
uses: 'nosborn/github-action-markdown-cli@9b5e871c11cc0649c5ac2526af22e23525fa344d' # v3.3.0
with:
files: '*.md'
config_file: '.markdownlint.yml'
dot: false
...