From bc70cef501637766871fc2181ef1694000dd9606 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 08:53:18 +0000 Subject: [PATCH 1/2] chore(deps): bump the github_actions group across 1 directory with 4 updates Bumps the github_actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node), [actions/setup-python](https://github.com/actions/setup-python) and [astral-sh/ruff-action](https://github.com/astral-sh/ruff-action). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) Updates `astral-sh/ruff-action` from 4.0.0 to 4.1.0 - [Release notes](https://github.com/astral-sh/ruff-action/releases) - [Commits](https://github.com/astral-sh/ruff-action/compare/v4.0.0...v4.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github_actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github_actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github_actions - dependency-name: astral-sh/ruff-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github_actions ... Signed-off-by: dependabot[bot] --- .github/workflows/node-gyp.yml | 8 ++++---- .github/workflows/nodejs.yml | 6 +++--- .github/workflows/python_tests.yml | 8 ++++---- .github/workflows/release-please.yml | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/node-gyp.yml b/.github/workflows/node-gyp.yml index c35978d7..29c41d2f 100644 --- a/.github/workflows/node-gyp.yml +++ b/.github/workflows/node-gyp.yml @@ -29,18 +29,18 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Clone gyp-next - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: gyp-next - name: Clone nodejs/node-gyp - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: nodejs/node-gyp path: node-gyp - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: "lts/*" - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} allow-prereleases: true diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index cacf8d9d..113707e3 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -24,15 +24,15 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Clone gyp-next - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: gyp-next - name: Clone nodejs/node - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: nodejs/node path: node - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} allow-prereleases: true diff --git a/.github/workflows/python_tests.yml b/.github/workflows/python_tests.yml index ee62866e..27296e7a 100644 --- a/.github/workflows/python_tests.yml +++ b/.github/workflows/python_tests.yml @@ -10,9 +10,9 @@ jobs: Python_lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Lint with ruff # See pyproject.toml for settings - uses: astral-sh/ruff-action@v4.0.0 + uses: astral-sh/ruff-action@v4.1.0 - run: ruff format --check --diff - uses: wagoid/commitlint-github-action@v6 @@ -33,9 +33,9 @@ jobs: - os: windows-2025-vs2026 # Windows with Visual Studio 2026 python-version: 3.x steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} allow-prereleases: true diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 56f07d58..29b910d1 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -24,7 +24,7 @@ jobs: if: ${{ needs.release-please.outputs.release_created }} # only publish on release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build a binary wheel and a source tarball run: pipx run build - name: Store the distribution packages From c22a0d97d784010e76c700dc8ccfd91ab4b0d1db Mon Sep 17 00:00:00 2001 From: Chengzhong Wu Date: Mon, 20 Jul 2026 15:01:20 -0400 Subject: [PATCH 2/2] chore: disable commit body length limit --- commitlint.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 commitlint.config.js diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 00000000..c7a07938 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,6 @@ +export default { + extends: ['@commitlint/config-conventional'], + rules: { + 'body-max-line-length': [0, 'always'], + }, +};