Skip to content

Bump actions/checkout from 5.0.0 to 6.0.0 (#4523) #2276

Bump actions/checkout from 5.0.0 to 6.0.0 (#4523)

Bump actions/checkout from 5.0.0 to 6.0.0 (#4523) #2276

Workflow file for this run

name: shellcheck
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
env:
# renovate: datasource=github-releases depName=https://github.com/koalaman/shellcheck
SHELLCHECK_VERSION: v0.10.0
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: shellcheck ci scripts
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0
env:
SHELLCHECK_OPTS: -x -e SC2059 -e SC2086
with:
scandir: ".ci"
severity: warning
version: ${{ env.SHELLCHECK_VERSION }}
- name: shellcheck hack scripts
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0
env:
SHELLCHECK_OPTS: -x -e SC2059 -e SC2086
with:
scandir: "hack"
severity: warning
version: ${{ env.SHELLCHECK_VERSION }}