From 9d8e0037840356fadf194f36881602a64de08372 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 18:10:28 +0000 Subject: [PATCH 1/2] Bump actions/download-artifact from 5 to 8 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 24c3e5fc..6cfcb0dc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -55,7 +55,7 @@ jobs: steps: - name: Download packages built by build-and-inspect-python-package - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: Packages path: dist @@ -79,7 +79,7 @@ jobs: steps: - name: Download packages built by build-and-inspect-python-package - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: Packages path: dist From 68b6bfe80e4cca67a2991524156e4d12b0971d4a Mon Sep 17 00:00:00 2001 From: barney Date: Sat, 2 May 2026 19:59:39 +0100 Subject: [PATCH 2/2] chore(ci): add pre-commit hook to CI workflow to resolve false failure classification --- .github/workflows/ci_template.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_template.yml b/.github/workflows/ci_template.yml index 7b92db8b..dc071915 100644 --- a/.github/workflows/ci_template.yml +++ b/.github/workflows/ci_template.yml @@ -32,6 +32,9 @@ jobs: - name: Install dependencies run: pip install -e .[dev] + - name: Run pre-commit + run: pre-commit run --all-files + - name: Run tests run: pytest