Skip to content

chore(deps): update all non-major dependencies #106

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #106

Workflow file for this run

name: DCO/CLA Verification
on:
pull_request:
push:
workflow_call:
jobs:
dco-cla-check:
runs-on: ubuntu-latest
steps:
- name: check required actions
uses: actions/github-script@v7
id: check_required_actions
with:
script: |
core.setOutput('default_branch', context.payload.repository.default_branch)
if(!context.payload.repository.license) {
return;
}
core.setOutput('dco_required', context.payload.repository.license.key == 'apache-2.0')
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Set up Python 3.x
if: steps.check_required_actions.outputs.dco_required == 'true'
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: '3.x'
- name: Check DCO
if: steps.check_required_actions.outputs.dco_required == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DCO_CHECK_VERBOSE: '1'
DCO_CHECK_EXCLUDE_PATTERN: '@(block.xyz|squareup.com|cash.app|tbd.email)$'
DCO_CHECK_EXCLUDE_EMAILS: 29139614+renovate[bot]@users.noreply.github.com,github-actions[bot]@users.noreply.github.com
DCO_CHECK_DEFAULT_BRANCH: ${{ steps.check_required_actions.outputs.default_branch }}
run: |
pip3 install -U dco-check
dco-check || true