From bcd325ea3615a137ee61d9f9f5c6a5b6c4e003d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 03:11:07 +0000 Subject: [PATCH 1/2] Bump actions/download-artifact from 6 to 7 in the github-actions group Bumps the github-actions group with 1 update: [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3c91804..f3e36ff 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v6 - name: Download Package - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Packages path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1097d20..d1c4032 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: - uses: actions/checkout@v6 - name: Download Package - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Packages path: dist From 064aa1f9e07b41e8ffe4459e3a0bc3d8b603c681 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 15 Dec 2025 07:27:56 -0300 Subject: [PATCH 2/2] Remove encoding option from rst-lint entry --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cc2c8fb..8770a7d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -26,7 +26,7 @@ repos: hooks: - id: rst name: rst - entry: rst-lint --encoding utf-8 + entry: rst-lint files: ^(CHANGELOG.rst|README.rst)$ language: python additional_dependencies: [pygments, restructuredtext_lint]