mirror of
https://github.com/OJ/gobuster.git
synced 2025-09-23 18:47:21 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
441 B
YAML
22 lines
441 B
YAML
name: yamllint
|
|
on:
|
|
push:
|
|
paths:
|
|
- "**.yml"
|
|
- "**.yaml"
|
|
pull_request:
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
yamllint:
|
|
name: yamllint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: karancode/yamllint-github-action@master
|
|
with:
|
|
# fail on warnings and errors
|
|
yamllint_strict: true
|
|
yamllint_config_filepath: ".yamllint.yml"
|