Skip to content

Commit 138df97

Browse files
chore(deps): update actions/setup-python action to v6.3.0 (#234)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-python](https://redirect.github.com/actions/setup-python) | action | minor | `v6.2.0` → `v6.3.0` | --- ### Release Notes <details> <summary>actions/setup-python (actions/setup-python)</summary> ### [`v6.3.0`](https://redirect.github.com/actions/setup-python/releases/tag/v6.3.0) [Compare Source](https://redirect.github.com/actions/setup-python/compare/v6.2.0...v6.3.0) ##### What's Changed ##### Enhancement - Add RHEL support and include Linux distro in cache keys by [@&#8203;priyagupta108](https://redirect.github.com/priyagupta108) in [#&#8203;1323](https://redirect.github.com/actions/setup-python/pull/1323) - Fix pip cache error handling on Windows by [@&#8203;priyagupta108](https://redirect.github.com/priyagupta108) in [#&#8203;1040](https://redirect.github.com/actions/setup-python/pull/1040) ##### Dependency update - Upgrade minimatch from 3.1.2 to 3.1.5 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [#&#8203;1281](https://redirect.github.com/actions/setup-python/pull/1281) - Upgrade actions dependencies by [@&#8203;gowridurgad](https://redirect.github.com/gowridurgad) with [@&#8203;Copilot](https://redirect.github.com/Copilot) in [#&#8203;1303](https://redirect.github.com/actions/setup-python/pull/1303) - Upgrade [@&#8203;actions/cache](https://redirect.github.com/actions/cache) to 5.1.0, log cache write denied by [@&#8203;jasongin](https://redirect.github.com/jasongin) in [#&#8203;1324](https://redirect.github.com/actions/setup-python/pull/1324) - Upgrade dependency versions and test workflow configuration by [@&#8203;HarithaVattikuti](https://redirect.github.com/HarithaVattikuti) in [#&#8203;1322](https://redirect.github.com/actions/setup-python/pull/1322) ##### Documentation - Update advanced-usage.md by [@&#8203;Dunky-Z](https://redirect.github.com/Dunky-Z) in [#&#8203;811](https://redirect.github.com/actions/setup-python/pull/811) ##### New Contributors - [@&#8203;gowridurgad](https://redirect.github.com/gowridurgad) with [@&#8203;Copilot](https://redirect.github.com/Copilot) made their first contribution in [#&#8203;1303](https://redirect.github.com/actions/setup-python/pull/1303) - [@&#8203;jasongin](https://redirect.github.com/jasongin) made their first contribution in [#&#8203;1324](https://redirect.github.com/actions/setup-python/pull/1324) - [@&#8203;Dunky-Z](https://redirect.github.com/Dunky-Z) made their first contribution in [#&#8203;811](https://redirect.github.com/actions/setup-python/pull/811) **Full Changelog**: <actions/setup-python@v6...v6.3.0> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/DrupalSecurityTeam/drupal-advisory-database). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMzUuMCIsInVwZGF0ZWRJblZlciI6IjQzLjI0Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7ea4a88 commit 138df97

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
6363
with:
6464
persist-credentials: false
65-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
65+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
6666
with:
6767
python-version-file: '.python-version'
6868
- run: pipx install poetry~=2.0
@@ -77,7 +77,7 @@ jobs:
7777
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
7878
with:
7979
persist-credentials: false
80-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
80+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
8181
with:
8282
python-version-file: '.python-version'
8383
- run: pipx install poetry~=2.0
@@ -92,7 +92,7 @@ jobs:
9292
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
9393
with:
9494
persist-credentials: false
95-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
95+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
9696
with:
9797
python-version-file: '.python-version'
9898
- run: pipx install poetry~=2.0

.github/workflows/generate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2424
with:
2525
persist-credentials: false
26-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
26+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
2727
with:
2828
python-version-file: '.python-version'
2929
- run: pipx install poetry~=2.0

0 commit comments

Comments
 (0)