From 9d0f9fe0f50c27c5a472ddb1959b41446dd11474 Mon Sep 17 00:00:00 2001 From: Tsvika Shapira Date: Mon, 15 Dec 2025 09:50:19 +0200 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=93=A6=E2=AC=86=EF=B8=8F=20Upgrade=20?= =?UTF-8?q?download-artifact=20action=20from=20v6=20to=20v7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../{% if in_pypi %}build-and-publish.yml{% endif %}.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_name/.github/workflows/{% if in_pypi %}build-and-publish.yml{% endif %}.jinja b/project_name/.github/workflows/{% if in_pypi %}build-and-publish.yml{% endif %}.jinja index 144580e..d221ed9 100644 --- a/project_name/.github/workflows/{% if in_pypi %}build-and-publish.yml{% endif %}.jinja +++ b/project_name/.github/workflows/{% if in_pypi %}build-and-publish.yml{% endif %}.jinja @@ -70,7 +70,7 @@ jobs: id-token: write steps: - name: Download package distributions - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: Packages path: dist/ From 0148ca444c18e533417f9d3796b1af5b0ff8376d Mon Sep 17 00:00:00 2001 From: Tsvika Shapira Date: Mon, 15 Dec 2025 15:16:39 +0200 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=A6=E2=AC=86=EF=B8=8FUpgrade=20bla?= =?UTF-8?q?ck=20dependency=20to=2025.12.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pre-commit-config.yaml | 4 ++-- project_name/.pre-commit-config.yaml.jinja | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 61b2e46..3aa5c6c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -107,14 +107,14 @@ repos: # python formatting and linting - repo: https://github.com/psf/black-pre-commit-mirror - rev: 25.11.0 + rev: 25.12.0 hooks: - id: black - repo: https://github.com/adamchainz/blacken-docs rev: 1.20.0 hooks: - id: blacken-docs - additional_dependencies: [black==25.11.0] + additional_dependencies: [black==25.12.0] - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.14.8 hooks: diff --git a/project_name/.pre-commit-config.yaml.jinja b/project_name/.pre-commit-config.yaml.jinja index 525246d..0926598 100644 --- a/project_name/.pre-commit-config.yaml.jinja +++ b/project_name/.pre-commit-config.yaml.jinja @@ -148,7 +148,7 @@ repos: rev: hooks: - id: blacken-docs - additional_dependencies: [black==25.11.0] + additional_dependencies: [black==25.12.0] - repo: https://github.com/astral-sh/ruff-pre-commit rev: hooks: From 7a41554138af81193822cc2fdadbc619a766152a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 13:26:11 +0000 Subject: [PATCH 3/3] Bump actions/cache from 4 to 5 in the github-actions group Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/uv-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/uv-tests.yml b/.github/workflows/uv-tests.yml index 66b34ac..f5437bd 100644 --- a/.github/workflows/uv-tests.yml +++ b/.github/workflows/uv-tests.yml @@ -48,7 +48,7 @@ jobs: git config --global user.email "${{ github.actor }}@users.noreply.github.com" git config --global user.name "${{ github.actor }}" - name: Cache pre-commit - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pre-commit key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml', 'project_name/.pre-commit-config.yaml.jinja') }}