From 3f6901dac478cd2182ec2b550330f871510148b4 Mon Sep 17 00:00:00 2001 From: ckunki Date: Mon, 16 Mar 2026 08:28:14 +0100 Subject: [PATCH 1/3] #745: Updated references to GitHub actions cache and setup-python --- .github/actions/python-environment/action.yml | 4 ++-- doc/changes/unreleased.md | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/actions/python-environment/action.yml b/.github/actions/python-environment/action.yml index 0757d6df4..88c311138 100644 --- a/.github/actions/python-environment/action.yml +++ b/.github/actions/python-environment/action.yml @@ -34,7 +34,7 @@ runs: - name: Set up Python (${{ inputs.python-version}}) - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ inputs.python-version }} @@ -68,7 +68,7 @@ runs: - name: Cache Poetry environment if: inputs.use-cache == 'true' id: cache-poetry-env - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.setup-cache-variables.outputs.POETRY_ENV_PATH }} key: poetry-env-${{ steps.setup-cache-variables.outputs.POETRY_SHA }}-${{ steps.setup-cache-variables.outputs.IMAGE_OS }}-${{ steps.setup-cache-variables.outputs.IMAGE_VERSION }}-${{ runner.arch }}-${{ inputs.poetry-version }}-${{ inputs.python-version }}-${{ inputs.extras }} diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 10ac7d74b..8b5b06f00 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -10,10 +10,16 @@ Before, a `.venv` directory would have be excluded no matter what parent directo Please see the user guide for details. +Additionally the release updates the references to GitHub actions `cache` and `setup-python` to avoid using deprecated Node.js 20 actions. + ## Features * #697: Supported multi-part paths in `add_to_excluded_python_paths` +## Security Issues + +* #745: Updated references to GitHub actions cache and setup-python + ## Refactoring * #728: Updated to latest PTB workflows and added `.workflow-patcher.yml` From 8ae6c55a99f2a0851e767c6a25f42da45f76db19 Mon Sep 17 00:00:00 2001 From: ckunki Date: Mon, 16 Mar 2026 08:31:04 +0100 Subject: [PATCH 2/3] Updated additional reference in security-issues/action.yml --- .github/actions/security-issues/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/security-issues/action.yml b/.github/actions/security-issues/action.yml index 48fbf8a11..bc90cc10b 100644 --- a/.github/actions/security-issues/action.yml +++ b/.github/actions/security-issues/action.yml @@ -32,7 +32,7 @@ runs: steps: - name: Setup Python (${{ inputs.python-version}}) - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: 3.11 From d2979dbcbd53627bc445b1386bf03d8a080d13ce Mon Sep 17 00:00:00 2001 From: ckunki Date: Mon, 16 Mar 2026 08:32:20 +0100 Subject: [PATCH 3/3] Rated issue as "refactoring" rather than security. --- doc/changes/unreleased.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 8b5b06f00..813416394 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -16,11 +16,8 @@ Additionally the release updates the references to GitHub actions `cache` and `s * #697: Supported multi-part paths in `add_to_excluded_python_paths` -## Security Issues - -* #745: Updated references to GitHub actions cache and setup-python - ## Refactoring * #728: Updated to latest PTB workflows and added `.workflow-patcher.yml` * #736: Capitalized and shorten names of GitHub workflows +* #745: Updated references to GitHub actions cache and setup-python