Skip to content

chore(deps): Update ansible-community/community-ee-base to v2.17.6-1 #656

chore(deps): Update ansible-community/community-ee-base to v2.17.6-1

chore(deps): Update ansible-community/community-ee-base to v2.17.6-1 #656

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@0080882f6c36860b6ba35c610c98ce87d4e2f26f' # v2.10.2
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
...