Bump certifi from 2023.11.17 to 2024.7.4 #54
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
--- | |
# This action performs a lint of markdown files in the repository | |
# Name of the action | |
name: Markdown Linting | |
# Events which trigger the action | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
markdownlint: | |
name: Lint markdown (.md) files | |
runs-on: ubuntu-latest | |
steps: | |
# checkout@v2 action documentation | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# markdownlint-cli action documentation | |
# https://github.com/marketplace/actions/markdownlint-cli | |
- name: markdownlint-cli | |
uses: nosborn/github-action-markdown-cli@v3.3.0 | |
with: | |
files: . | |
config_file: .markdownlint.json |