Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/python-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/security-issues/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ 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`
Expand All @@ -18,3 +20,4 @@ Please see the user guide for details.

* #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
Loading