Skip to content

chore(deps): Bump @types/node from 25.9.3 to 26.0.0 #280

chore(deps): Bump @types/node from 25.9.3 to 26.0.0

chore(deps): Bump @types/node from 25.9.3 to 26.0.0 #280

Workflow file for this run

name: DCO
on:
pull_request:
branches:
- main
permissions: {}
jobs:
dco:
name: DCO Check
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.14"
- name: Run DCO Check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo 'dco-check==0.5.0 --hash=sha256:3c027d2d47b5cbb03f7e2a25ec8ffb56d8a33c49563c8fcd2cef443ebf3cff0d' > /tmp/requirements-dco.txt
pip install --require-hashes --no-deps -r /tmp/requirements-dco.txt
dco-check --exclude-pattern '(dependabot|renovate|pre-commit-ci)\[bot\]'