diff --git a/.github/workflows/autofix.yaml b/.github/workflows/autofix.yaml index 1a03b3b43..dcbf82e20 100644 --- a/.github/workflows/autofix.yaml +++ b/.github/workflows/autofix.yaml @@ -53,14 +53,14 @@ jobs: fetch-depth: 0 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Run gha-utils metadata id: project-metadata env: GITHUB_CONTEXT: ${{ toJSON(github) }} run: > uvx - --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt + --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/gha-utils.txt -- gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT" @@ -74,7 +74,7 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Run autopep8 if: needs.project-metadata.outputs.python_files # Ruff is not wrapping comments: https://github.com/astral-sh/ruff/issues/7414 @@ -84,7 +84,7 @@ jobs: # Explicit list of files is provided, as autopep8 is not able to handle find files in ".github" subdirectory. run: > uvx - --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/autopep8.txt + --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/autopep8.txt -- autopep8 --recursive --in-place --max-line-length 88 --select E501 --aggressive ${{ needs.project-metadata.outputs.python_files }} @@ -141,7 +141,7 @@ jobs: - name: Install Ruff run: > uv tool install --with-requirements - https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/ruff.txt ruff + https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/ruff.txt ruff - name: Run Ruff check run: | ruff check --config ./ruff.toml @@ -160,7 +160,7 @@ jobs: # https://github.com/astral-sh/ruff/issues/3792 run: > uvx - --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/blacken-docs.txt + --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/blacken-docs.txt -- blacken-docs --line-length 88 @@ -197,7 +197,7 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Sync uv.lock run: | uv --no-progress sync --upgrade @@ -226,11 +226,11 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install mdformat run: > uv tool install --with-requirements - https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/mdformat.txt mdformat + https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/mdformat.txt mdformat - name: Install shfmt run: | sudo apt install --yes shfmt diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index 0fe896fbe..1ca214a77 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -35,11 +35,11 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install bump-my-version run: > uv tool install --with-requirements - https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/bump-my-version.txt bump-my-version + https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/bump-my-version.txt bump-my-version - name: ${{ matrix.part }} version bump # TODO: get configuration URL once https://github.com/callowayproject/bump-my-version/issues/148 is addressed, # so we can factorize projects' pyproject.toml files to kdeldycke/workflow/pyproject.toml . @@ -104,11 +104,11 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install bump-my-version run: > uv tool install --with-requirements - https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/bump-my-version.txt bump-my-version + https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/bump-my-version.txt bump-my-version - name: Extract version id: get_version run: | @@ -174,7 +174,7 @@ jobs: - name: Add new changelog entry run: > uvx - --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt + --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/gha-utils.txt -- gha-utils --verbosity DEBUG changelog ./changelog.md - name: Version bump diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 112bf5a08..c742b1f0c 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -100,11 +100,11 @@ jobs: fetch-depth: 0 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Generate .mailmap run: > uvx - --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt + --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/gha-utils.txt -- gha-utils --verbosity DEBUG mailmap-sync --skip-if-missing ./.mailmap - uses: peter-evans/create-pull-request@v7.0.6 @@ -142,14 +142,14 @@ jobs: fetch-depth: 0 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Run gha-utils metadata id: project-metadata env: GITHUB_CONTEXT: ${{ toJSON(github) }} run: > uvx - --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt + --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/gha-utils.txt -- gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT" @@ -163,12 +163,12 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install pipdeptree run: | uv --no-progress venv --python 3.13 uv --no-progress pip install \ - --requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/pipdeptree.txt + --requirement https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/pipdeptree.txt - name: Install project run: | uv --no-progress pip install . @@ -221,7 +221,7 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install project dependencies run: | uv --no-progress venv --python 3.13 @@ -257,7 +257,7 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install project dependencies run: | uv --no-progress venv --python 3.13 diff --git a/.github/workflows/labeller-content-based.yaml b/.github/workflows/labeller-content-based.yaml index d541703c6..4685a9656 100644 --- a/.github/workflows/labeller-content-based.yaml +++ b/.github/workflows/labeller-content-based.yaml @@ -37,7 +37,7 @@ jobs: - name: Download default rules run: > curl -fsSL --output ./.github/labeller-content-based.yaml - https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labeller-content-based.yaml + https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/.github/labeller-content-based.yaml - name: Extend default rules if: inputs.extra-rules run: | diff --git a/.github/workflows/labeller-file-based.yaml b/.github/workflows/labeller-file-based.yaml index a431ab608..a30618aa3 100644 --- a/.github/workflows/labeller-file-based.yaml +++ b/.github/workflows/labeller-file-based.yaml @@ -34,7 +34,7 @@ jobs: - name: Download default rules run: > curl -fsSL --output ./.github/labeller-file-based.yaml - https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labeller-file-based.yaml + https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/.github/labeller-file-based.yaml - name: Extend default rules if: inputs.extra-rules run: | diff --git a/.github/workflows/labels.yaml b/.github/workflows/labels.yaml index 36a6749f0..ea79e9857 100644 --- a/.github/workflows/labels.yaml +++ b/.github/workflows/labels.yaml @@ -31,8 +31,8 @@ jobs: with: skip_delete: true from: | - https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels.yaml + https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/.github/labels.yaml ${{ inputs.extra-label-files }} ${{ ( startsWith(github.event.repository.name, 'awesome-') && github.event.repository.name != 'awesome-template' && - 'https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels-awesome.yaml' ) || '' }} + 'https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/.github/labels-awesome.yaml' ) || '' }} diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 49282a09e..84c88f62e 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -31,14 +31,14 @@ jobs: fetch-depth: 0 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Run gha-utils metadata id: project-metadata env: GITHUB_CONTEXT: ${{ toJSON(github) }} run: > uvx - --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt + --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/gha-utils.txt -- gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT" @@ -52,12 +52,12 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install Mypy run: | uv --no-progress venv --python 3.13 uv --no-progress pip install \ - --requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/mypy.txt + --requirement https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/mypy.txt - name: Install package # Use --inexact so that uv doesn't try to remove the mypy package installed above. run: | @@ -76,11 +76,11 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Run yamllint run: > uvx - --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/yamllint.txt + --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/yamllint.txt -- yamllint --strict --config-data "{rules: {line-length: {max: 120}}}" --format github . diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index dea60119b..567c08856 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -59,14 +59,14 @@ jobs: git log --decorate=full --oneline - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Run gha-utils metadata id: project-metadata env: GITHUB_CONTEXT: ${{ toJSON(github) }} run: > uvx - --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/gha-utils.txt + --with-requirements https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/gha-utils.txt -- gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT" @@ -84,12 +84,12 @@ jobs: ref: ${{ matrix.commit }} - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install build dependencies run: | uv --no-progress venv --python 3.13 uv --no-progress pip install \ - --requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/build.txt + --requirement https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/build.txt - name: Build package run: | uv --no-progress build @@ -125,7 +125,7 @@ jobs: python-version: "3.13" - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install Nuitka # XXX We cannot break the long "pip install" line below with a class "\" because it will not be able to run on # Windows' shell: @@ -137,7 +137,7 @@ jobs: # yamllint disable rule:line-length run: | uv --no-progress venv --python 3.13 --python-preference system - uv --no-progress pip install --requirement https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/nuitka.txt + uv --no-progress pip install --requirement https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/nuitka.txt # yamllint enable - name: Nuitka + compilers versions # XXX Nuitka needs the ".cmd" extension on Windows: @@ -321,7 +321,7 @@ jobs: steps: - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Download build artifacts uses: actions/download-artifact@v4.1.8 id: download diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 58387b5dd..c31a8146f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -138,7 +138,7 @@ jobs: python-version: "${{ matrix.python-version }}" - name: Install uv run: | - python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt + python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.10.0/requirements/uv.txt - name: Install project run: | uv --no-progress venv --python ${{ matrix.python-version }} diff --git a/changelog.md b/changelog.md index 4d95be70f..ed7bdf636 100644 --- a/changelog.md +++ b/changelog.md @@ -1,9 +1,6 @@ # Changelog -## [4.10.0 (unreleased)](https://github.com/kdeldycke/workflows/compare/v4.9.0...main) - -> [!IMPORTANT] -> This version is not released yet and is under active development. +## [4.10.0 (2025-01-08)](https://github.com/kdeldycke/workflows/compare/v4.9.0...v4.10.0) - Replace unmaintained `jsonlint` by ESLint. - Add new `gitignore_exists` metadata output.