Skip to content

build(deps): bump lodash from 4.17.23 to 4.18.1 in /labextension/ui-t… #21

build(deps): bump lodash from 4.17.23 to 4.18.1 in /labextension/ui-t…

build(deps): bump lodash from 4.17.23 to 4.18.1 in /labextension/ui-t… #21

Workflow file for this run

name: License Header Check
on:
push:
branches:
- main
pull_request:
jobs:
check-license-headers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Install addlicense
run: |
go install github.com/google/addlicense@latest
echo "$HOME/go/bin" >> $GITHUB_PATH
- name: Check license headers
run: |
~/go/bin/addlicense -check -f .license-header.txt \
-ignore "**/tests/assets/**" \
-ignore "**/node_modules/**" \
-ignore "**/.venv/**" \
-ignore "**/dist/**" \
-ignore "**/*.json" \
-ignore "**/*.md" \
-ignore "**/*.css" \
-ignore "**/*.svg" \
-ignore "**/*.html" \
-ignore "**/*.yaml" \
-ignore "**/*.yml" \
-ignore "**/*.toml" \
-ignore "**/*.txt" \
-ignore "**/*.cfg" \
-ignore "**/*.ini" \
-ignore "**/*.lock" \
-ignore "**/Makefile" \
-ignore "**/.gitignore" \
-ignore "**/LICENSE" \
.