build(deps): bump lycheeverse/lychee-action from 2.4.0 to 2.4.1 in /.github/workflows in the actions group #13
Workflow file for this run
This file contains hidden or 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
# Used to lint GitHub actions. https://github.com/rhysd/actionlint | |
name: Actionlint | |
on: | |
pull_request: | |
paths: | |
- '.github/**' | |
jobs: | |
actionlint: | |
name: Action lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check workflow files | |
run: | | |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | |
./actionlint -color -ignore SC2129 | |
shell: bash |