Bump actions/checkout from 4.1.7 to 4.2.0 in the github group #10
Workflow file for this run
This file contains 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: lint | |
on: | |
push: | |
branches: | |
# Run on pushes to default branch | |
- main | |
# Run against pull requests | |
pull_request: | |
jobs: | |
markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🔒 harden runner | |
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: ⬇️ lint markdown files | |
uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1.5.0 | |
with: | |
config: ".markdownlint.json" | |
args: "**/*.md .github/**/*.md" |