Skip to content

Bump redhat-plumbers-in-action/differential-shellcheck from 5.4.0 to 5.5.1 #484

Bump redhat-plumbers-in-action/differential-shellcheck from 5.4.0 to 5.5.1

Bump redhat-plumbers-in-action/differential-shellcheck from 5.4.0 to 5.5.1 #484

Workflow file for this run

---
## This workflow executes several linters on changed files based on languages
## used in your code base whenever you push a code or open a pull request.
##
## You can adjust the behavior by modifying this file.
## For more information, see:
## https://github.com/github/super-linter
name: Lint Code Base
permissions: {}
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
jobs:
run-lint:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
# yamllint disable-line rule:line-length
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # @v4.2.2
with:
## Full git history is needed to get a proper list of changed files
## within `super-linter`
fetch-depth: 0
- name: Lint Code Base
# yamllint disable-line rule:line-length
uses: super-linter/super-linter@85f7611e0f7b53c8573cca84aa0ed4344f6f6a4d # @v7.2.1
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: "main"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}