Skip to content

chore(deps): update dependency org.apache.maven.plugins:maven-depende… #77

chore(deps): update dependency org.apache.maven.plugins:maven-depende…

chore(deps): update dependency org.apache.maven.plugins:maven-depende… #77

Workflow file for this run

---
name: ActionLint
on:
# Run on push to main/master branch
push:
branches: [main]
# Run on all pull requests
pull_request:
branches: ['**']
# Allow manual triggering
workflow_dispatch:
permissions:
contents: read
jobs:
actionlint:
name: Check GitHub Actions Workflows
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 1
persist-credentials: false
- name: Run actionlint
uses: reviewdog/action-actionlint@95395aac8c053577d0bc67eb7b74936c660c6f66 # v1.67.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Report all findings as annotations directly on GitHub
reporter: github-check
# Error on warnings as well as errors
fail_level: error
# Comment on the pull request
level: error
filter_mode: nofilter