Skip to content

Update ruff requirement from ~=0.4.4 to ~=0.6.3 #560

Update ruff requirement from ~=0.4.4 to ~=0.6.3

Update ruff requirement from ~=0.4.4 to ~=0.6.3 #560

Workflow file for this run

#
# MIT License
#
# (C) Copyright 2022-2023 Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
name: shell (lint)
on:
push:
workflow_dispatch:
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run shellcheck
uses: luizm/action-sh-checker@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Note we globally ignore SC2148 as a lot of this shell is library
# only not something that should have a shebang line.
#
# The shebang check is disabled as most of the shell here is truly a
# library and these scripts cannot be ran, we default to posix shell
# SC2148
#
# We also allow local to be used for scoping with variables SC3043
SHELLCHECK_OPTS: --shell=sh --severity=warning --color=always -e SC2148 -e SC3043
# Options kinda chosen at random based off most of our shell in use
# these seemed to be the union set of most of them.
SHFMT_OPTS: -ci -p -i 2 -bn -sr
with:
sh_checker_comment: true
sh_checker_exclude: "spec" # We can exclude things here as well that should never be checked spec excluded as sh-fmt can't parse them sanely it flattens the Describe/End blocks will fix this later.