Skip to content

chore(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1 #8553

chore(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1

chore(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1 #8553

name: Core / Check Integration Format
on:
- pull_request
jobs:
check:
runs-on: ubuntu-slim
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Ensure no hyphens
run: |
set +e
find . -name "*-*" -type d -maxdepth 2 | grep integrations
test "$?" -eq 1 && exit 0 || echo "::error::Names of folders in ./integrations must not contain hyphens" && exit 1