From 434783de01175b0f9ad514407e6516e99d9c9b18 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 04:54:01 +0000 Subject: [PATCH 1/3] MAINT: bump the actions group with 2 updates Bumps the actions group with 2 updates: [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v6...v7) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index ba82eb9..7a6ecf9 100644 --- a/action.yml +++ b/action.yml @@ -13,7 +13,7 @@ runs: - uses: actions/setup-python@v6 with: python-version: ${{ inputs.python-version }} - - uses: astral-sh/setup-uv@v6 + - uses: astral-sh/setup-uv@v7 - env: FORCE_COLOR: True UV_SYSTEM_PYTHON: True @@ -22,7 +22,7 @@ runs: - name: Show changes run: git diff --color --unified=0 shell: bash - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v6 with: if-no-files-found: error include-hidden-files: true From d8c18ae306150495d4c4fabec3285c41645c5541 Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Tue, 27 Jan 2026 18:12:49 +0100 Subject: [PATCH 2/3] MAINT: upgrade workflows --- .github/workflows/cd.yml | 4 ++-- .github/workflows/pr-linting.yml | 2 +- README.md | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 048bf29..5f74ee7 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -9,8 +9,8 @@ on: jobs: milestone: if: startsWith(github.ref, 'refs/tags') - uses: ComPWA/actions/.github/workflows/close-milestone.yml@v3 + uses: ComPWA/actions/.github/workflows/close-milestone.yml@v4 push: if: startsWith(github.ref, 'refs/tags') && !github.event.release.prerelease secrets: inherit - uses: ComPWA/actions/.github/workflows/push-to-version-branches.yml@v3 + uses: ComPWA/actions/.github/workflows/push-to-version-branches.yml@v4 diff --git a/.github/workflows/pr-linting.yml b/.github/workflows/pr-linting.yml index 638dfc1..e15b56f 100644 --- a/.github/workflows/pr-linting.yml +++ b/.github/workflows/pr-linting.yml @@ -11,4 +11,4 @@ on: jobs: lint-pr: - uses: ComPWA/actions/.github/workflows/pr-linting.yml@v3 + uses: ComPWA/actions/.github/workflows/pr-linting.yml@v4 diff --git a/README.md b/README.md index 4ddbf17..6124b22 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ jobs: name: pre-commit autoupdate runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Check if there are changes to pre-commit config @@ -26,11 +26,11 @@ jobs: needs: - pre-commit steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: token: ${{ secrets.PAT }} # GITHUB_TOKEN will not rerun checks after pushing to a PR branch - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v7 with: path: pre-commit - run: | From 2178ad3e84e13a6e2d64a90f0b8527629721b50f Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Tue, 27 Jan 2026 18:15:10 +0100 Subject: [PATCH 3/3] DOC: update workflow for archiving --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6124b22..3be1f42 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # Auto-update pre-commit GitHub Action -A small [custom, composite GitHub Action](https://docs.github.com/en/actions/creating-actions/creating-a-composite-action) that is used by [ComPWA](https://github.com/ComPWA) repositories that pin constraints files (see [update-pip-constraints](https://github.com/ComPWA/update-pip-constraints)). The action is enforced in these repositories through [ComPWA/repo-maintenance](https://github.com/ComPWA/repo-maintenance). +> [!WARNING] +> This repository has been deprecated in favor of the [ComPWA/actions/.github/workflows/lock.yml@v4](https://github.com/ComPWA/actions/blob/v4/.github/workflows/lock.yml#L213-L236) workflow. + +A small [custom, composite GitHub Action](https://docs.github.com/en/actions/creating-actions/creating-a-composite-action) that is used by [ComPWA](https://github.com/ComPWA) repositories that pin constraints files (see [update-pip-constraints](https://github.com/ComPWA/update-pip-constraints)). The action is enforced in these repositories through [ComPWA/policy](https://github.com/ComPWA/policy). ## Example workflow