Skip to content

Commit 482d0c2

Browse files
authored
#745: Updated references to GitHub actions cache and setup-python (#746)
1 parent 721c426 commit 482d0c2

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/actions/python-environment/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434

3535

3636
- name: Set up Python (${{ inputs.python-version}})
37-
uses: actions/setup-python@v5
37+
uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ inputs.python-version }}
4040

@@ -68,7 +68,7 @@ runs:
6868
- name: Cache Poetry environment
6969
if: inputs.use-cache == 'true'
7070
id: cache-poetry-env
71-
uses: actions/cache@v4
71+
uses: actions/cache@v5
7272
with:
7373
path: ${{ steps.setup-cache-variables.outputs.POETRY_ENV_PATH }}
7474
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 }}

.github/actions/security-issues/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
steps:
3333

3434
- name: Setup Python (${{ inputs.python-version}})
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: 3.11
3838

doc/changes/unreleased.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Before, a `.venv` directory would have be excluded no matter what parent directo
1010

1111
Please see the user guide for details.
1212

13+
Additionally the release updates the references to GitHub actions `cache` and `setup-python` to avoid using deprecated Node.js 20 actions.
14+
1315
## Features
1416

1517
* #697: Supported multi-part paths in `add_to_excluded_python_paths`
@@ -18,3 +20,4 @@ Please see the user guide for details.
1820

1921
* #728: Updated to latest PTB workflows and added `.workflow-patcher.yml`
2022
* #736: Capitalized and shorten names of GitHub workflows
23+
* #745: Updated references to GitHub actions cache and setup-python

0 commit comments

Comments
 (0)