Skip to content

build(deps): Bump actions/checkout from 4.1.1 to 4.1.2 #26

build(deps): Bump actions/checkout from 4.1.1 to 4.1.2

build(deps): Bump actions/checkout from 4.1.1 to 4.1.2 #26

Workflow file for this run

name: shellcheck
# Runs the workflow on the below events:
# 1. on pull request raised to trunk branch.
# 2. on push event to trunk branch.
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@cd81f4475ab741e097ec0fe73b692f3e49d66b8c # v2.0.0
env:
SHELLCHECK_OPTS: -e SC1090 -e SC1091