build(deps): bump the opentelemetry-deps-collector group across 5 directories with 21 updates #3125
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Continuous Build (shellcheck)" | |
on: [push, pull_request] | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install shell check | |
run: sudo apt update && sudo apt install --assume-yes shellcheck | |
- name: Run shellcheck | |
run: >- | |
find . -type f | | |
grep -v '.git' | | |
xargs -n 30 file | | |
grep -i shell | | |
awk -F':' '{print $1}' | | |
xargs shellcheck | |