Files
testssl.sh/.github/workflows/shellcheck.yml
dependabot[bot] ba4855026f Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [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/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-21 00:02:35 +00:00

39 lines
795 B
YAML

# Runs shellcheck on code -- in error mode only.
# "paths-ignore" should be in line with unit_test.*yml files
---
name: Shellcheck
on:
pull_request:
paths-ignore:
- 'utils/**'
- 'doc/**'
- 'bin/**'
- '**.md'
- '**.1'
- '**.html'
- '**.pem'
- '**.pdf'
- '**.yml'
- 'LICENSE'
- 'Dockerfile'
- 'Dockerfile.alpine'
permissions:
contents: read
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-24.04
env:
LANG: C.UTF-8
steps:
- uses: actions/checkout@v6
- name: Install shellcheck
run: sudo apt update && sudo apt install -y shellcheck && shellcheck --version
- name: Check shell scripts
run: shellcheck -x -P "SCRIPTDIR"/utils --severity=error testssl.sh