Skip to content

feat: Add launch-ec2-runner-with-fallback action #10

feat: Add launch-ec2-runner-with-fallback action

feat: Add launch-ec2-runner-with-fallback action #10

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
name: Shellcheck
on:
push:
branches:
- "main"
- "release-**"
paths:
- '**.sh'
- '.github/workflows/shellcheck.yaml' # This workflow file
pull_request:
branches:
- "main"
- "release-**"
paths:
- '**.sh'
- '.github/workflows/shellcheck.yaml' # This workflow file
env:
LC_ALL: en_US.UTF-8
defaults:
run:
shell: bash
permissions:
contents: read
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- name: "Harden Runner"
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
# https://github.com/actions/checkout/issues/249
fetch-depth: 0
- name: Install dependent PRs if needed
uses: depends-on/depends-on-action@61cb3f4a0e2c8ae4b90c9448dc57c7ba9ca24c35 # main
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0
with:
check_together: 'yes'
format: gcc