mirror of
https://github.com/karancode/yamllint-github-action.git
synced 2024-08-16 10:19:48 +02:00
fd9fefda5a
Bumps [actionshub/markdownlint](https://github.com/actionshub/markdownlint) from 1.0.0 to 3.1.4. - [Release notes](https://github.com/actionshub/markdownlint/releases) - [Commits](https://github.com/actionshub/markdownlint/compare/v1.0.0...v3.1.4) --- updated-dependencies: - dependency-name: actionshub/markdownlint dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
778 B
YAML
33 lines
778 B
YAML
---
|
|
name: linting
|
|
on:
|
|
- pull_request
|
|
|
|
jobs:
|
|
Markdownlint:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Markdown Lint
|
|
uses: actionshub/markdownlint@v3.1.4
|
|
|
|
Dockerfilelint:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Dockerfile Lint
|
|
uses: burdzwastaken/hadolint-action@1.6.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
HADOLINT_ACTION_DOCKERFILE_FOLDER: .
|
|
|
|
Yamllint:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: YAML Lint
|
|
uses: karancode/yamllint-github-action@master
|
|
with:
|
|
yamllint_comment: true
|
|
env:
|
|
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|