Skip to content

chore(deps): update actions/checkout action to v5 #10

chore(deps): update actions/checkout action to v5

chore(deps): update actions/checkout action to v5 #10

Workflow file for this run

name: Action Linting
on:
pull_request:
branches:
- "main"
paths:
- ".github/workflows/**"
permissions: read-all
jobs:
actionlint:
name: Action Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Download actionlint
id: get_actionlint
run:
bash <(curl
https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
shell: bash
- name: Check workflow files
run: ${{ steps.get_actionlint.outputs.executable }} -color
shell: bash