Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Add GraalPy support#694

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
dmitry-shibanov merged 18 commits intoactions:mainfromtimfel:tim/graalpy-support
Oct 10, 2023
Merged

Conversation

@timfel
Copy link
Contributor

Description:
This adds support for graalpy as a Python to use when running setup-python

Related issue:
#693

Check list:

  • Mark if documentation changes are required.
  • Mark if tests were added or updated to cover the changes.

fniephaus reacted with thumbs up emojialina-yur and lukasstadler reacted with rocket emoji
@timfeltimfel requested a review froma team as acode ownerJune 28, 2023 13:29
@timfeltimfel mentioned this pull requestJun 28, 2023
@timfel
Copy link
ContributorAuthor

timfel commentedJun 30, 2023
edited
Loading

Locallynpm test is passing and running thetest-graalpy workflow I added withact also passes. Please let me know if this is going the right direction :)

@timfeltimfelforce-pushed thetim/graalpy-support branch fromaf8b00e to2c87a2dCompareJuly 1, 2023 07:57
@timfel
Copy link
ContributorAuthor

Any thoughts?

@dmitry-shibanov
Copy link
Contributor

Hello@timfel. Sorry for the late response. Could you please attach licenses information regarding to GraalPy ?

@timfel
Copy link
ContributorAuthor

Hello@timfel. Sorry for the late response. Could you please attach licenses information regarding to GraalPy ?

Hi. My changes pull GraalPy from the open source Github repo, which is under UPL:https://github.com/oracle/graalpython/blob/master/LICENSE.txt#L5

@dusan-trickovicdusan-trickovic linked an issueJul 13, 2023 that may beclosed by this pull request
@dusan-trickovicdusan-trickovic removed a link to an issueJul 13, 2023
@dusan-trickovicdusan-trickovic linked an issueJul 13, 2023 that may beclosed by this pull request
@timfel
Copy link
ContributorAuthor

Anything else I can help with?

@timfel
Copy link
ContributorAuthor

Friendly ping :) Anything I can help with or clarify?

@dmitry-shibanov
Copy link
Contributor

Hello@timfel. Sorry for the late response. For now we're investigating it. We'll ping you If we need any help. Thank you.

? 'aarch64'
: architecture;
const graalpyPlatform =
platform === 'win32'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Could you please change it toIS_WINDOWS fromutils.ts

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

platform here is a parameter to the function. I think it would be weird if it overrode the passed parameter with the current platform.

@dmitry-shibanov
Copy link
Contributor

Could you please run thenpm ci && npm run format && npm run build command to resolve Basic Validation builds.

strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-20.04, ubuntu-latest]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

GraalPy is available for Windows, too. Would it be an option to test against Windows?

Copy link
ContributorAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

For 23.0 there were no Windows binary releases. The upcoming 23.1 will have Windows releases, but they are very limited, things like native extensions do not work, yet. Tests for Windows will likely just not pass.

Copy link
ContributorAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Our plan is to have more complete Windows support for our 2024 release, so we'll have to do a follow up PR next year.

kurtmckee and MiirzaBaig reacted with thumbs up emoji
const toolDir = path.join(__dirname, 'runner', 'tools');
const tempDir = path.join(__dirname, 'runner', 'temp');

/* GraalPy doesn't have a windows release yet */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

GraalPy is downloadable for Windows; is this comment still correct?

Copy link
ContributorAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

It is correct, the last release for GraalPy is 23.0.1 and doesn't have Windows binaries. The upcoming 23.1 will have binaries, but they are very limited.

kurtmckee reacted with thumbs up emoji
@timfel
Copy link
ContributorAuthor

Anything else to do here? We would really like this to go in so that Python projects that already use setup-python can easily start testing against GraalPy :)

@timfel
Copy link
ContributorAuthor

Friendly ping :)

@kurtmckee
Copy link
Contributor

When this merges, I'll work to update#611 so that GraalPy is supported for robust cache-busting as well.

timfel reacted with thumbs up emoji

@dmitry-shibanovdmitry-shibanov merged commit5f2af21 intoactions:mainOct 10, 2023
@timfeltimfel deleted the tim/graalpy-support branchOctober 25, 2023 14:49
@kurtmckeekurtmckee mentioned this pull requestNov 1, 2023
renovatebot referenced this pull request in rpdelaney/downforeveryoneDec 5, 2023
[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Type | Update | Change ||---|---|---|---|| [actions/setup-python](https://togithub.com/actions/setup-python) |action | minor | `v4.7.1` -> `v4.8.0` |---### Release Notes<details><summary>actions/setup-python (actions/setup-python)</summary>###[`v4.8.0`](https://togithub.com/actions/setup-python/releases/tag/v4.8.0)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.7.1...v4.8.0)#### What's ChangedIn scope of this release we added support for GraalPy([https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)).You can use this snippet to set up GraalPy:```yamlsteps:- uses: actions/checkout@v4- uses: actions/setup-python@v4   with:    python-version: 'graalpy-22.3' - run: python my_script.py```Besides, the release contains such changes as:- Trim python version when reading from file by[@&#8203;FerranPares](https://togithub.com/FerranPares) in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- Use non-deprecated versions in examples by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)- Change deprecation comment to past tense by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/723](https://togithub.com/actions/setup-python/pull/723)- Bump [@&#8203;babel/traverse](https://togithub.com/babel/traverse)from 7.9.0 to 7.23.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/actions/setup-python/pull/743](https://togithub.com/actions/setup-python/pull/743)- advanced-usage.md: Encourage the use actions/checkout@v4 by[@&#8203;cclauss](https://togithub.com/cclauss) in[https://github.com/actions/setup-python/pull/729](https://togithub.com/actions/setup-python/pull/729)- Examples now use checkout@v4 by[@&#8203;simonw](https://togithub.com/simonw) in[https://github.com/actions/setup-python/pull/738](https://togithub.com/actions/setup-python/pull/738)- Update actions/checkout to v4 by[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in[https://github.com/actions/setup-python/pull/761](https://togithub.com/actions/setup-python/pull/761)#### New Contributors- [@&#8203;FerranPares](https://togithub.com/FerranPares) made theirfirst contribution in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- [@&#8203;timfel](https://togithub.com/timfel) made their firstcontribution in[https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)- [@&#8203;jeffwidman](https://togithub.com/jeffwidman) made their firstcontribution in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)**Full Changelog**:actions/setup-python@v4...v4.8.0</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Enabled.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR has been generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). Viewrepository job log[here](https://developer.mend.io/github/rpdelaney/downforeveryone).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
averikitsch referenced this pull request in GoogleCloudPlatform/cymbal-air-toolbox-demoDec 5, 2023
[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Type | Update | Change ||---|---|---|---|| [actions/setup-python](https://togithub.com/actions/setup-python) |action | minor | `v4.7.1` -> `v4.8.0` |---### Release Notes<details><summary>actions/setup-python (actions/setup-python)</summary>###[`v4.8.0`](https://togithub.com/actions/setup-python/releases/tag/v4.8.0)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.7.1...v4.8.0)#### What's ChangedIn scope of this release we added support for GraalPy([https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)).You can use this snippet to set up GraalPy:```yamlsteps:- uses: actions/checkout@v4- uses: actions/setup-python@v4   with:    python-version: 'graalpy-22.3' - run: python my_script.py```Besides, the release contains such changes as:- Trim python version when reading from file by[@&#8203;FerranPares](https://togithub.com/FerranPares) in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- Use non-deprecated versions in examples by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)- Change deprecation comment to past tense by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/723](https://togithub.com/actions/setup-python/pull/723)- Bump [@&#8203;babel/traverse](https://togithub.com/babel/traverse)from 7.9.0 to 7.23.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/actions/setup-python/pull/743](https://togithub.com/actions/setup-python/pull/743)- advanced-usage.md: Encourage the use actions/checkout@v4 by[@&#8203;cclauss](https://togithub.com/cclauss) in[https://github.com/actions/setup-python/pull/729](https://togithub.com/actions/setup-python/pull/729)- Examples now use checkout@v4 by[@&#8203;simonw](https://togithub.com/simonw) in[https://github.com/actions/setup-python/pull/738](https://togithub.com/actions/setup-python/pull/738)- Update actions/checkout to v4 by[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in[https://github.com/actions/setup-python/pull/761](https://togithub.com/actions/setup-python/pull/761)#### New Contributors- [@&#8203;FerranPares](https://togithub.com/FerranPares) made theirfirst contribution in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- [@&#8203;timfel](https://togithub.com/timfel) made their firstcontribution in[https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)- [@&#8203;jeffwidman](https://togithub.com/jeffwidman) made their firstcontribution in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)**Full Changelog**:actions/setup-python@v4...v4.8.0</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR has been generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). Viewrepository job log[here](https://developer.mend.io/github/GoogleCloudPlatform/genai-databases-retrieval-app).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS4zIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
rpdelaney referenced this pull request in rpdelaney/uncolorDec 9, 2023
[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Type | Update | Change | Age | Adoption | Passing |Confidence ||---|---|---|---|---|---|---|---|| [actions/setup-python](https://togithub.com/actions/setup-python) |action | major | `v4.7.0` -> `v5.0.0` |[![age](https://developer.mend.io/api/mc/badges/age/github-tags/actions%2fsetup-python/v5.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/actions%2fsetup-python/v5.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/actions%2fsetup-python/v4.7.0/v5.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/actions%2fsetup-python/v4.7.0/v5.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|| [flake8](https://togithub.com/pycqa/flake8)([changelog](https://flake8.pycqa.org/en/latest/release-notes/index.html))| dev-dependencies | major | `5.0.4` -> `6.1.0` |[![age](https://developer.mend.io/api/mc/badges/age/pypi/flake8/6.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/flake8/6.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/flake8/5.0.4/6.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/flake8/5.0.4/6.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---### Release Notes<details><summary>actions/setup-python (actions/setup-python)</summary>###[`v5.0.0`](https://togithub.com/actions/setup-python/releases/tag/v5.0.0)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.8.0...v5.0.0)#### What's ChangedIn scope of this release, we update node version runtime from node16 tonode20([https://github.com/actions/setup-python/pull/772](https://togithub.com/actions/setup-python/pull/772)).Besides, we update dependencies to the latest versions.**Full Changelog**:actions/setup-python@v4.8.0...v5.0.0###[`v4.8.0`](https://togithub.com/actions/setup-python/releases/tag/v4.8.0)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.7.1...v4.8.0)#### What's ChangedIn scope of this release we added support for GraalPy([https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)).You can use this snippet to set up GraalPy:```yamlsteps:- uses: actions/checkout@v4- uses: actions/setup-python@v4   with:    python-version: 'graalpy-22.3' - run: python my_script.py```Besides, the release contains such changes as:- Trim python version when reading from file by[@&#8203;FerranPares](https://togithub.com/FerranPares) in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- Use non-deprecated versions in examples by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)- Change deprecation comment to past tense by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/723](https://togithub.com/actions/setup-python/pull/723)- Bump [@&#8203;babel/traverse](https://togithub.com/babel/traverse)from 7.9.0 to 7.23.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/actions/setup-python/pull/743](https://togithub.com/actions/setup-python/pull/743)- advanced-usage.md: Encourage the use actions/checkout@v4 by[@&#8203;cclauss](https://togithub.com/cclauss) in[https://github.com/actions/setup-python/pull/729](https://togithub.com/actions/setup-python/pull/729)- Examples now use checkout@v4 by[@&#8203;simonw](https://togithub.com/simonw) in[https://github.com/actions/setup-python/pull/738](https://togithub.com/actions/setup-python/pull/738)- Update actions/checkout to v4 by[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in[https://github.com/actions/setup-python/pull/761](https://togithub.com/actions/setup-python/pull/761)#### New Contributors- [@&#8203;FerranPares](https://togithub.com/FerranPares) made theirfirst contribution in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- [@&#8203;timfel](https://togithub.com/timfel) made their firstcontribution in[https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)- [@&#8203;jeffwidman](https://togithub.com/jeffwidman) made their firstcontribution in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)**Full Changelog**:actions/setup-python@v4...v4.8.0###[`v4.7.1`](https://togithub.com/actions/setup-python/releases/tag/v4.7.1)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.7.0...v4.7.1)#### What's Changed- Bump word-wrap from 1.2.3 to 1.2.4 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/actions/setup-python/pull/702](https://togithub.com/actions/setup-python/pull/702)- Add range validation for toml files by[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in[https://github.com/actions/setup-python/pull/726](https://togithub.com/actions/setup-python/pull/726)**Full Changelog**:actions/setup-python@v4...v4.7.1</details><details><summary>pycqa/flake8 (flake8)</summary>### [`v6.1.0`](https://togithub.com/pycqa/flake8/compare/6.0.0...6.1.0)[CompareSource](https://togithub.com/pycqa/flake8/compare/6.0.0...6.1.0)### [`v6.0.0`](https://togithub.com/pycqa/flake8/compare/5.0.4...6.0.0)[CompareSource](https://togithub.com/pycqa/flake8/compare/5.0.4...6.0.0)</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Enabled.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.👻 **Immortal**: This PR will be recreated if closed unmerged. Get[config help](https://togithub.com/renovatebot/renovate/discussions) ifthat's undesired.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR has been generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). Viewrepository job log[here](https://developer.mend.io/github/rpdelaney/uncolor).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
petretiandrea referenced this pull request in petretiandrea/home-assistant-tapo-p100Dec 10, 2023
[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Type | Update | Change ||---|---|---|---|| [actions/setup-python](https://togithub.com/actions/setup-python) |action | major | `v4.7.1` -> `v5.0.0` |---### Release Notes<details><summary>actions/setup-python (actions/setup-python)</summary>###[`v5.0.0`](https://togithub.com/actions/setup-python/releases/tag/v5.0.0)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.8.0...v5.0.0)#### What's ChangedIn scope of this release, we update node version runtime from node16 tonode20([https://github.com/actions/setup-python/pull/772](https://togithub.com/actions/setup-python/pull/772)).Besides, we update dependencies to the latest versions.**Full Changelog**:actions/setup-python@v4.8.0...v5.0.0###[`v4.8.0`](https://togithub.com/actions/setup-python/releases/tag/v4.8.0)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.7.1...v4.8.0)#### What's ChangedIn scope of this release we added support for GraalPy([https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)).You can use this snippet to set up GraalPy:```yamlsteps:- uses: actions/checkout@v4- uses: actions/setup-python@v4   with:    python-version: 'graalpy-22.3' - run: python my_script.py```Besides, the release contains such changes as:- Trim python version when reading from file by[@&#8203;FerranPares](https://togithub.com/FerranPares) in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- Use non-deprecated versions in examples by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)- Change deprecation comment to past tense by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/723](https://togithub.com/actions/setup-python/pull/723)- Bump [@&#8203;babel/traverse](https://togithub.com/babel/traverse)from 7.9.0 to 7.23.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/actions/setup-python/pull/743](https://togithub.com/actions/setup-python/pull/743)- advanced-usage.md: Encourage the use actions/checkout@v4 by[@&#8203;cclauss](https://togithub.com/cclauss) in[https://github.com/actions/setup-python/pull/729](https://togithub.com/actions/setup-python/pull/729)- Examples now use checkout@v4 by[@&#8203;simonw](https://togithub.com/simonw) in[https://github.com/actions/setup-python/pull/738](https://togithub.com/actions/setup-python/pull/738)- Update actions/checkout to v4 by[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in[https://github.com/actions/setup-python/pull/761](https://togithub.com/actions/setup-python/pull/761)#### New Contributors- [@&#8203;FerranPares](https://togithub.com/FerranPares) made theirfirst contribution in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- [@&#8203;timfel](https://togithub.com/timfel) made their firstcontribution in[https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)- [@&#8203;jeffwidman](https://togithub.com/jeffwidman) made their firstcontribution in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)**Full Changelog**:actions/setup-python@v4...v4.8.0</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR has been generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). Viewrepository job log[here](https://developer.mend.io/github/petretiandrea/home-assistant-tapo-p100).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
lambchop4prez referenced this pull request in lambchop4prez/networkApr 7, 2024
[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Type | Update | Change ||---|---|---|---|| [actions/setup-python](https://togithub.com/actions/setup-python) |action | major | `v4.7.0` -> `v5.1.0` |---> [!WARNING]> Some dependencies could not be looked up. Check the DependencyDashboard for more information.---### Release Notes<details><summary>actions/setup-python (actions/setup-python)</summary>###[`v5.1.0`](https://togithub.com/actions/setup-python/releases/tag/v5.1.0)[CompareSource](https://togithub.com/actions/setup-python/compare/v5.0.0...v5.1.0)#### What's Changed- Leveraging the raw API to retrieve the version-manifest, as it doesnot impose a rate limit and hence facilitates unrestricted consumptionwithout the need for a token for Github Enterprise Servers by[@&#8203;Shegox](https://togithub.com/Shegox) in[https://github.com/actions/setup-python/pull/766](https://togithub.com/actions/setup-python/pull/766).- Dependency updates by[@&#8203;dependabot](https://togithub.com/dependabot) and[@&#8203;HarithaVattikuti](https://togithub.com/HarithaVattikuti) in[https://github.com/actions/setup-python/pull/817](https://togithub.com/actions/setup-python/pull/817)- Documentation changes for version in README by[@&#8203;basnijholt](https://togithub.com/basnijholt) in[https://github.com/actions/setup-python/pull/776](https://togithub.com/actions/setup-python/pull/776)- Documentation changes for link in README by[@&#8203;ukd1](https://togithub.com/ukd1) in[https://github.com/actions/setup-python/pull/793](https://togithub.com/actions/setup-python/pull/793)- Documentation changes for link in Advanced Usage by[@&#8203;Jamim](https://togithub.com/Jamim) in[https://github.com/actions/setup-python/pull/782](https://togithub.com/actions/setup-python/pull/782)- Documentation changes for avoiding rate limit issues on GHES by[@&#8203;priya-kinthali](https://togithub.com/priya-kinthali) in[https://github.com/actions/setup-python/pull/835](https://togithub.com/actions/setup-python/pull/835)#### New Contributors- [@&#8203;basnijholt](https://togithub.com/basnijholt) made their firstcontribution in[https://github.com/actions/setup-python/pull/776](https://togithub.com/actions/setup-python/pull/776)- [@&#8203;ukd1](https://togithub.com/ukd1) made their firstcontribution in[https://github.com/actions/setup-python/pull/793](https://togithub.com/actions/setup-python/pull/793)- [@&#8203;Jamim](https://togithub.com/Jamim) made their firstcontribution in[https://github.com/actions/setup-python/pull/782](https://togithub.com/actions/setup-python/pull/782)- [@&#8203;Shegox](https://togithub.com/Shegox) made their firstcontribution in[https://github.com/actions/setup-python/pull/766](https://togithub.com/actions/setup-python/pull/766)- [@&#8203;priya-kinthali](https://togithub.com/priya-kinthali) madetheir first contribution in[https://github.com/actions/setup-python/pull/835](https://togithub.com/actions/setup-python/pull/835)**Full Changelog**:actions/setup-python@v5.0.0...v5.1.0###[`v5.0.0`](https://togithub.com/actions/setup-python/releases/tag/v5.0.0)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.8.0...v5.0.0)#### What's ChangedIn scope of this release, we update node version runtime from node16 tonode20([https://github.com/actions/setup-python/pull/772](https://togithub.com/actions/setup-python/pull/772)).Besides, we update dependencies to the latest versions.**Full Changelog**:actions/setup-python@v4.8.0...v5.0.0###[`v4.8.0`](https://togithub.com/actions/setup-python/releases/tag/v4.8.0)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.7.1...v4.8.0)#### What's ChangedIn scope of this release we added support for GraalPy([https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)).You can use this snippet to set up GraalPy:```yamlsteps:- uses: actions/checkout@v4- uses: actions/setup-python@v4   with:    python-version: 'graalpy-22.3' - run: python my_script.py```Besides, the release contains such changes as:- Trim python version when reading from file by[@&#8203;FerranPares](https://togithub.com/FerranPares) in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- Use non-deprecated versions in examples by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)- Change deprecation comment to past tense by[@&#8203;jeffwidman](https://togithub.com/jeffwidman) in[https://github.com/actions/setup-python/pull/723](https://togithub.com/actions/setup-python/pull/723)- Bump [@&#8203;babel/traverse](https://togithub.com/babel/traverse)from 7.9.0 to 7.23.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/actions/setup-python/pull/743](https://togithub.com/actions/setup-python/pull/743)- advanced-usage.md: Encourage the use actions/checkout@v4 by[@&#8203;cclauss](https://togithub.com/cclauss) in[https://github.com/actions/setup-python/pull/729](https://togithub.com/actions/setup-python/pull/729)- Examples now use checkout@v4 by[@&#8203;simonw](https://togithub.com/simonw) in[https://github.com/actions/setup-python/pull/738](https://togithub.com/actions/setup-python/pull/738)- Update actions/checkout to v4 by[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in[https://github.com/actions/setup-python/pull/761](https://togithub.com/actions/setup-python/pull/761)#### New Contributors- [@&#8203;FerranPares](https://togithub.com/FerranPares) made theirfirst contribution in[https://github.com/actions/setup-python/pull/628](https://togithub.com/actions/setup-python/pull/628)- [@&#8203;timfel](https://togithub.com/timfel) made their firstcontribution in[https://github.com/actions/setup-python/pull/694](https://togithub.com/actions/setup-python/pull/694)- [@&#8203;jeffwidman](https://togithub.com/jeffwidman) made their firstcontribution in[https://github.com/actions/setup-python/pull/724](https://togithub.com/actions/setup-python/pull/724)**Full Changelog**:actions/setup-python@v4...v4.8.0###[`v4.7.1`](https://togithub.com/actions/setup-python/releases/tag/v4.7.1)[CompareSource](https://togithub.com/actions/setup-python/compare/v4.7.0...v4.7.1)#### What's Changed- Bump word-wrap from 1.2.3 to 1.2.4 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/actions/setup-python/pull/702](https://togithub.com/actions/setup-python/pull/702)- Add range validation for toml files by[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in[https://github.com/actions/setup-python/pull/726](https://togithub.com/actions/setup-python/pull/726)**Full Changelog**:actions/setup-python@v4...v4.7.1</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR has been generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). Viewrepository job log[here](https://developer.mend.io/github/lambchop4prez/network).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
@kurtmckee
Copy link
Contributor

@timfel It looks like the 24.x release series is out. Does this include Windows support that could integrate with setup-python? 🤞

@timfel
Copy link
ContributorAuthor

@timfel It looks like the 24.x release series is out. Does this include Windows support that could integrate with setup-python? 🤞

It does indeed. We also finally managed to get nightly builds out with some json metadata (https://github.com/graalvm/graal-languages-ea-builds/blob/main/graalpy/versions/latest-ea.json), so we'll integrate that, too, so people can test on upcoming versions as well.

kurtmckee and fniephaus reacted with hooray emoji

otc-zuulbot pushed a commit to opentelekomcloud-infra/system-config that referenced this pull requestMay 19, 2025
Bump the all-actions group with 4 updatesBumps the all-actions group with 4 updates: actions/checkout, azure/setup-helm, actions/setup-python and peter-evans/create-pull-request.Updates actions/checkout from 3 to 4Release notesSourced from actions/checkout's releases.v4.0.0What's ChangedUpdate default runtime to node20 by @​takost inactions/checkout#1436Support fetching without the --progress option by @​simonbaird inactions/checkout#1067Release 4.0.0 by @​takost inactions/checkout#1447New Contributors@​takost made their first contribution inactions/checkout#1436@​simonbaird made their first contribution inactions/checkout#1067Full Changelog: actions/checkout@v3...v4.0.0v3.6.0What's ChangedMark test scripts with Bash'isms to be run via Bash by @​dscho inactions/checkout#1377Add option to fetch tags even if fetch-depth > 0 by @​RobertWieczoreck inactions/checkout#579Release 3.6.0 by @​luketomlinson inactions/checkout#1437New Contributors@​RobertWieczoreck made their first contribution inactions/checkout#579@​luketomlinson made their first contribution inactions/checkout#1437Full Changelog: actions/checkout@v3.5.3...v3.6.0v3.5.3What's ChangedFix: Checkout Issue in self hosted runner due to faulty submodule check-ins by @​megamanics inactions/checkout#1196Fix typos found by codespell by @​DimitriPapadopoulos inactions/checkout#1287Add support for sparse checkouts by @​dscho and @​dfdez inactions/checkout#1369Release v3.5.3 by @​TingluoHuang inactions/checkout#1376New Contributors@​megamanics made their first contribution inactions/checkout#1196@​DimitriPapadopoulos made their first contribution inactions/checkout#1287@​dfdez made their first contribution inactions/checkout#1369Full Changelog: actions/checkout@v3...v3.5.3v3.5.2What's ChangedFix: Use correct API url / endpoint in GHES by @​fhammerl inactions/checkout#1289 based on#1286 by @​1newsrFull Changelog: actions/checkout@v3.5.1...v3.5.2v3.5.1What's ChangedImprove checkout performance on Windows runners by upgrading @​actions/github dependency by @​BrettDong inactions/checkout#1246New Contributors@​BrettDong made their first contribution inactions/checkout#1246... (truncated)ChangelogSourced from actions/checkout's changelog.Changelogv4.2.2url-helper.ts now leverages well-known environment variables by @​jww3 inactions/checkout#1941Expand unit test coverage for isGhes by @​jww3 inactions/checkout#1946v4.2.1Check out other refs/* by commit if provided, fall back to ref by @​orhantoy inactions/checkout#1924v4.2.0Add Ref and Commit outputs by @​lucacome inactions/checkout#1180Dependency updates by @​dependabot-actions/checkout#1777,actions/checkout#1872v4.1.7Bump the minor-npm-dependencies group across 1 directory with 4 updates by @​dependabot inactions/checkout#1739Bump actions/checkout from 3 to 4 by @​dependabot inactions/checkout#1697Check out other refs/* by commit by @​orhantoy inactions/checkout#1774Pin actions/checkout's own workflows to a known, good, stable version. by @​jww3 inactions/checkout#1776v4.1.6Check platform to set archive extension appropriately by @​cory-miller inactions/checkout#1732v4.1.5Update NPM dependencies by @​cory-miller inactions/checkout#1703Bump github/codeql-action from 2 to 3 by @​dependabot inactions/checkout#1694Bump actions/setup-node from 1 to 4 by @​dependabot inactions/checkout#1696Bump actions/upload-artifact from 2 to 4 by @​dependabot inactions/checkout#1695README: Suggest user.email to be 41898282+github-actions[bot]@users.noreply.github.com by @​cory-miller inactions/checkout#1707v4.1.4Disable extensions.worktreeConfig when disabling sparse-checkout by @​jww3 inactions/checkout#1692Add dependabot config by @​cory-miller inactions/checkout#1688Bump the minor-actions-dependencies group with 2 updates by @​dependabot inactions/checkout#1693Bump word-wrap from 1.2.3 to 1.2.5 by @​dependabot inactions/checkout#1643v4.1.3Check git version before attempting to disable sparse-checkout by @​jww3 inactions/checkout#1656Add SSH user parameter by @​cory-miller inactions/checkout#1685Update actions/checkout version in update-main-version.yml by @​jww3 inactions/checkout#1650v4.1.2Fix: Disable sparse checkout whenever sparse-checkout option is not present @​dscho inactions/checkout#1598v4.1.1Correct link to GitHub Docs by @​peterbe inactions/checkout#1511Link to release page from what's new section by @​cory-miller inactions/checkout#1514v4.1.0Add support for partial checkout filters... (truncated)Commits11bd719 Prepare 4.2.2 Release (#1953)e3d2460 Expand unit test coverage (#1946)163217d url-helper.ts now leverages well-known environment variables. (#1941)eef6144 Prepare 4.2.1 release (#1925)6b42224 Add workflow file for publishing releases to immutable action package (#1919)de5a000 Check out other refs/* by commit if provided, fall back to ref (#1924)d632683 Prepare 4.2.0 release (#1878)6d193bf Bump braces from 3.0.2 to 3.0.3 (#1777)db0cee9 Bump the minor-npm-dependencies group across 1 directory with 4 updates (#1872)b684943 Add Ref and Commit outputs (#1180)Additional commits viewable in compare viewUpdates azure/setup-helm from 3 to 4Release notesSourced from azure/setup-helm's releases.v4.0.0#121 update to node20 as node16 is deprecatedv3.5 releaseBump @​actions/core version to remove output warning.v3.4 releaseImproves the querying method to find the latest Helm release. Takes advantage of new GitHub api changes.v3.3 releaseAdd token input. Needed for fetching latestv3.1 releaseSwap to GraphQL GitHub APIChangelogSourced from azure/setup-helm's changelog.Change Log[4.3.0] - 2025-02-15#152 feat: log when restoring from cache#157 Dependencies Update#137 Add dependabot[4.2.0] - 2024-04-15#124 Fix OS detection and download OS-native archive extension[4.1.0] - 2024-03-01#130 switches to use Helm published file to read latest version instead of using GitHub releases[4.0.0] - 2024-02-12#121 update to node20 as node16 is deprecatedCommitsb9e5190 build0e8654b Release setup-helm version 4.3.0 (#162)b48e1df feat: log when restoring from cache (#152)855ae7a Bump the actions group across 1 directory with 3 updates (#159)124c6d8 Dependencies Update (#157)048f4e7 Bump the actions group across 1 directory with 2 updates (#151)8618769 Bump the actions group across 1 directory with 4 updates (#149)4eb898e Bump the actions group across 1 directory with 2 updates (#145)7a2001c Bump the actions group across 1 directory with 2 updates (#143)e90c86c Bump the actions group across 1 directory with 9 updates (#141)Additional commits viewable in compare viewUpdates actions/setup-python from 4 to 5Release notesSourced from actions/setup-python's releases.v5.0.0What's ChangedIn scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772). Besides, we update dependencies to the latest versions.Full Changelog: actions/setup-python@v4.8.0...v5.0.0v4.9.1What's ChangedAdd workflow file for publishing releases to immutable action package by @​aparnajyothi-y inactions/setup-python#1084Full Changelog: actions/setup-python@v4...v4.9.1v4.9.0What's ChangedUpgrade actions/cache to 4.0.3 by @​priya-kinthali inactions/setup-python#1073In scope of this release we updated actions/cache package to ensure continued support and compatibility, as older versions of the package are now deprecated. For more information please refer to the toolkit/cache.Full Changelog: actions/setup-python@v4.8.0...v4.9.0v4.8.0What's ChangedIn scope of this release we added support for GraalPy (actions/setup-python#694). You can use this snippet to set up GraalPy:steps:- uses: actions/checkout@v4- uses: actions/setup-python@v4   with:    python-version: 'graalpy-22.3' - run: python my_script.pyBesides, the release contains such changes as:Trim python version when reading from file by @​FerranPares inactions/setup-python#628Use non-deprecated versions in examples by @​jeffwidman inactions/setup-python#724Change deprecation comment to past tense by @​jeffwidman inactions/setup-python#723Bump @​babel/traverse from 7.9.0 to 7.23.2 by @​dependabot inactions/setup-python#743advanced-usage.md: Encourage the use actions/checkout@v4 by @​cclauss inactions/setup-python#729Examples now use checkout@v4 by @​simonw inactions/setup-python#738Update actions/checkout to v4 by @​dmitry-shibanov inactions/setup-python#761New Contributors@​FerranPares made their first contribution inactions/setup-python#628@​timfel made their first contribution inactions/setup-python#694@​jeffwidman made their first contribution inactions/setup-python#724Full Changelog: actions/setup-python@v4...v4.8.0... (truncated)Commitsa26af69 Bump ts-jest from 29.1.2 to 29.3.2 (#1081)30eafe9 Bump prettier from 2.8.8 to 3.5.3 (#1046)5d95bc1 Bump semver and @​types/semver (#1091)6ed2c67 Fix for Candidate Not Iterable Error (#1082)e348410 Remove Ubuntu 20.04 from workflows due to deprecation from 2025-04-15 (#1065)8d9ed9a Add e2e Testing for free threaded and Bump @​action/cache from 4.0.0 to 4.0.3 ...19e4675 Add support for .tool-versions file in setup-python (#1043)6fd11e1 Bump @​actions/glob from 0.4.0 to 0.5.0 (#1015)9e62be8 Support free threaded Python versions like '3.13t' (#973)6ca8e85 Bump @​vercel/ncc from 0.38.1 to 0.38.3 (#1016)Additional commits viewable in compare viewUpdates peter-evans/create-pull-request from 5 to 7Release notesSourced from peter-evans/create-pull-request's releases.Create Pull Request v7.0.0✨ Now supports commit signing with bot-generated tokens! See "What's new" below. ✍️🤖Behaviour changesAction input git-token has been renamed branch-token, to be more clear about its purpose. The branch-token is the token that the action will use to create and update the branch.The action now handles requests that have been rate-limited by GitHub. Requests hitting a primary rate limit will retry twice, for a total of three attempts. Requests hitting a secondary rate limit will not be retried.The pull-request-operation output now returns none when no operation was executed.Removed deprecated output environment variable PULL_REQUEST_NUMBER. Please use the pull-request-number action output instead.What's newThe action can now sign commits as github-actions[bot] when using GITHUB_TOKEN, or your own bot when using GitHub App tokens. See commit signing for details.Action input draft now accepts a new value always-true. This will set the pull request to draft status when the pull request is updated, as well as on creation.A new action input maintainer-can-modify indicates whether maintainers can modify the pull request. The default is true, which retains the existing behaviour of the action.A new output pull-request-commits-verified returns true or false, indicating whether GitHub considers the signature of the branch's commits to be verified.What's Changedbuild(deps-dev): bump @​types/node from 18.19.36 to 18.19.39 by @​dependabot inpeter-evans/create-pull-request#3000build(deps-dev): bump ts-jest from 29.1.5 to 29.2.0 by @​dependabot inpeter-evans/create-pull-request#3008build(deps-dev): bump prettier from 3.3.2 to 3.3.3 by @​dependabot inpeter-evans/create-pull-request#3018build(deps-dev): bump ts-jest from 29.2.0 to 29.2.2 by @​dependabot inpeter-evans/create-pull-request#3019build(deps-dev): bump eslint-plugin-prettier from 5.1.3 to 5.2.1 by @​dependabot inpeter-evans/create-pull-request#3035build(deps-dev): bump @​types/node from 18.19.39 to 18.19.41 by @​dependabot inpeter-evans/create-pull-request#3037build(deps): bump undici from 6.19.2 to 6.19.4 by @​dependabot inpeter-evans/create-pull-request#3036build(deps-dev): bump ts-jest from 29.2.2 to 29.2.3 by @​dependabot inpeter-evans/create-pull-request#3038build(deps-dev): bump @​types/node from 18.19.41 to 18.19.42 by @​dependabot inpeter-evans/create-pull-request#3070build(deps): bump undici from 6.19.4 to 6.19.5 by @​dependabot inpeter-evans/create-pull-request#3086build(deps-dev): bump @​types/node from 18.19.42 to 18.19.43 by @​dependabot inpeter-evans/create-pull-request#3087build(deps-dev): bump ts-jest from 29.2.3 to 29.2.4 by @​dependabot inpeter-evans/create-pull-request#3088build(deps): bump undici from 6.19.5 to 6.19.7 by @​dependabot inpeter-evans/create-pull-request#3145build(deps-dev): bump @​types/node from 18.19.43 to 18.19.44 by @​dependabot inpeter-evans/create-pull-request#3144Update distribution by @​actions-bot inpeter-evans/create-pull-request#3154build(deps): bump undici from 6.19.7 to 6.19.8 by @​dependabot inpeter-evans/create-pull-request#3213build(deps-dev): bump @​types/node from 18.19.44 to 18.19.45 by @​dependabot inpeter-evans/create-pull-request#3214Update distribution by @​actions-bot inpeter-evans/create-pull-request#3221build(deps-dev): bump eslint-import-resolver-typescript from 3.6.1 to 3.6.3 by @​dependabot inpeter-evans/create-pull-request#3255build(deps-dev): bump @​types/node from 18.19.45 to 18.19.46 by @​dependabot inpeter-evans/create-pull-request#3254build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5 by @​dependabot inpeter-evans/create-pull-request#3256v7 - signed commits by @​peter-evans inpeter-evans/create-pull-request#3057New Contributors@​rustycl0ck made their first contribution inpeter-evans/create-pull-request#3057Full Changelog: peter-evans/create-pull-request@v6.1.0...v7.0.0Create Pull Request v6.1.0✨ Adds pull-request-branch as an action output.What's Changed... (truncated)Commits271a8d0 fix: suppress output for some git operations (#3776)6f7efd1 test: update cpr-example-command13c47c5 build(deps-dev): bump prettier from 3.5.1 to 3.5.2 (#3754)63e5829 build(deps): bump @​octokit/plugin-paginate-rest from 11.4.2 to 11.4.3 (#3753)a92c90f build(deps-dev): bump eslint-import-resolver-typescript (#3752)b23b62d build(deps-dev): bump ts-jest from 29.2.5 to 29.2.6 (#3751)dd2324f fix: use showFileAtRefBase64 to read per-commit file contents (#3744)367180c ci: remove testv5 cmd25575a1 build: update distribution (#3736)a56e7a5 build(deps): bump @​octokit/core from 6.1.3 to 6.1.4 (#3711)Additional commits viewable in compare viewDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting@dependabot rebase.Dependabot commands and optionsYou can trigger Dependabot actions by commenting on this PR:@dependabot rebase will rebase this PR@dependabot recreate will recreate this PR, overwriting any edits that have been made to it@dependabot merge will merge this PR after your CI passes on it@dependabot squash and merge will squash and merge this PR after your CI passes on it@dependabot cancel merge will cancel a previously requested merge and block automerging@dependabot reopen will reopen this PR if it is closed@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditionsReviewed-by: Vladimir Vshivkov
vladimirvshivkov pushed a commit to opentelekomcloud-infra/system-config that referenced this pull requestMay 21, 2025
Bump the all-actions group with 4 updatesBumps the all-actions group with 4 updates: actions/checkout, azure/setup-helm, actions/setup-python and peter-evans/create-pull-request.Updates actions/checkout from 3 to 4Release notesSourced from actions/checkout's releases.v4.0.0What's ChangedUpdate default runtime to node20 by @​takost inactions/checkout#1436Support fetching without the --progress option by @​simonbaird inactions/checkout#1067Release 4.0.0 by @​takost inactions/checkout#1447New Contributors@​takost made their first contribution inactions/checkout#1436@​simonbaird made their first contribution inactions/checkout#1067Full Changelog: actions/checkout@v3...v4.0.0v3.6.0What's ChangedMark test scripts with Bash'isms to be run via Bash by @​dscho inactions/checkout#1377Add option to fetch tags even if fetch-depth > 0 by @​RobertWieczoreck inactions/checkout#579Release 3.6.0 by @​luketomlinson inactions/checkout#1437New Contributors@​RobertWieczoreck made their first contribution inactions/checkout#579@​luketomlinson made their first contribution inactions/checkout#1437Full Changelog: actions/checkout@v3.5.3...v3.6.0v3.5.3What's ChangedFix: Checkout Issue in self hosted runner due to faulty submodule check-ins by @​megamanics inactions/checkout#1196Fix typos found by codespell by @​DimitriPapadopoulos inactions/checkout#1287Add support for sparse checkouts by @​dscho and @​dfdez inactions/checkout#1369Release v3.5.3 by @​TingluoHuang inactions/checkout#1376New Contributors@​megamanics made their first contribution inactions/checkout#1196@​DimitriPapadopoulos made their first contribution inactions/checkout#1287@​dfdez made their first contribution inactions/checkout#1369Full Changelog: actions/checkout@v3...v3.5.3v3.5.2What's ChangedFix: Use correct API url / endpoint in GHES by @​fhammerl inactions/checkout#1289 based on#1286 by @​1newsrFull Changelog: actions/checkout@v3.5.1...v3.5.2v3.5.1What's ChangedImprove checkout performance on Windows runners by upgrading @​actions/github dependency by @​BrettDong inactions/checkout#1246New Contributors@​BrettDong made their first contribution inactions/checkout#1246... (truncated)ChangelogSourced from actions/checkout's changelog.Changelogv4.2.2url-helper.ts now leverages well-known environment variables by @​jww3 inactions/checkout#1941Expand unit test coverage for isGhes by @​jww3 inactions/checkout#1946v4.2.1Check out other refs/* by commit if provided, fall back to ref by @​orhantoy inactions/checkout#1924v4.2.0Add Ref and Commit outputs by @​lucacome inactions/checkout#1180Dependency updates by @​dependabot-actions/checkout#1777,actions/checkout#1872v4.1.7Bump the minor-npm-dependencies group across 1 directory with 4 updates by @​dependabot inactions/checkout#1739Bump actions/checkout from 3 to 4 by @​dependabot inactions/checkout#1697Check out other refs/* by commit by @​orhantoy inactions/checkout#1774Pin actions/checkout's own workflows to a known, good, stable version. by @​jww3 inactions/checkout#1776v4.1.6Check platform to set archive extension appropriately by @​cory-miller inactions/checkout#1732v4.1.5Update NPM dependencies by @​cory-miller inactions/checkout#1703Bump github/codeql-action from 2 to 3 by @​dependabot inactions/checkout#1694Bump actions/setup-node from 1 to 4 by @​dependabot inactions/checkout#1696Bump actions/upload-artifact from 2 to 4 by @​dependabot inactions/checkout#1695README: Suggest user.email to be 41898282+github-actions[bot]@users.noreply.github.com by @​cory-miller inactions/checkout#1707v4.1.4Disable extensions.worktreeConfig when disabling sparse-checkout by @​jww3 inactions/checkout#1692Add dependabot config by @​cory-miller inactions/checkout#1688Bump the minor-actions-dependencies group with 2 updates by @​dependabot inactions/checkout#1693Bump word-wrap from 1.2.3 to 1.2.5 by @​dependabot inactions/checkout#1643v4.1.3Check git version before attempting to disable sparse-checkout by @​jww3 inactions/checkout#1656Add SSH user parameter by @​cory-miller inactions/checkout#1685Update actions/checkout version in update-main-version.yml by @​jww3 inactions/checkout#1650v4.1.2Fix: Disable sparse checkout whenever sparse-checkout option is not present @​dscho inactions/checkout#1598v4.1.1Correct link to GitHub Docs by @​peterbe inactions/checkout#1511Link to release page from what's new section by @​cory-miller inactions/checkout#1514v4.1.0Add support for partial checkout filters... (truncated)Commits11bd719 Prepare 4.2.2 Release (#1953)e3d2460 Expand unit test coverage (#1946)163217d url-helper.ts now leverages well-known environment variables. (#1941)eef6144 Prepare 4.2.1 release (#1925)6b42224 Add workflow file for publishing releases to immutable action package (#1919)de5a000 Check out other refs/* by commit if provided, fall back to ref (#1924)d632683 Prepare 4.2.0 release (#1878)6d193bf Bump braces from 3.0.2 to 3.0.3 (#1777)db0cee9 Bump the minor-npm-dependencies group across 1 directory with 4 updates (#1872)b684943 Add Ref and Commit outputs (#1180)Additional commits viewable in compare viewUpdates azure/setup-helm from 3 to 4Release notesSourced from azure/setup-helm's releases.v4.0.0#121 update to node20 as node16 is deprecatedv3.5 releaseBump @​actions/core version to remove output warning.v3.4 releaseImproves the querying method to find the latest Helm release. Takes advantage of new GitHub api changes.v3.3 releaseAdd token input. Needed for fetching latestv3.1 releaseSwap to GraphQL GitHub APIChangelogSourced from azure/setup-helm's changelog.Change Log[4.3.0] - 2025-02-15#152 feat: log when restoring from cache#157 Dependencies Update#137 Add dependabot[4.2.0] - 2024-04-15#124 Fix OS detection and download OS-native archive extension[4.1.0] - 2024-03-01#130 switches to use Helm published file to read latest version instead of using GitHub releases[4.0.0] - 2024-02-12#121 update to node20 as node16 is deprecatedCommitsb9e5190 build0e8654b Release setup-helm version 4.3.0 (#162)b48e1df feat: log when restoring from cache (#152)855ae7a Bump the actions group across 1 directory with 3 updates (#159)124c6d8 Dependencies Update (#157)048f4e7 Bump the actions group across 1 directory with 2 updates (#151)8618769 Bump the actions group across 1 directory with 4 updates (#149)4eb898e Bump the actions group across 1 directory with 2 updates (#145)7a2001c Bump the actions group across 1 directory with 2 updates (#143)e90c86c Bump the actions group across 1 directory with 9 updates (#141)Additional commits viewable in compare viewUpdates actions/setup-python from 4 to 5Release notesSourced from actions/setup-python's releases.v5.0.0What's ChangedIn scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772). Besides, we update dependencies to the latest versions.Full Changelog: actions/setup-python@v4.8.0...v5.0.0v4.9.1What's ChangedAdd workflow file for publishing releases to immutable action package by @​aparnajyothi-y inactions/setup-python#1084Full Changelog: actions/setup-python@v4...v4.9.1v4.9.0What's ChangedUpgrade actions/cache to 4.0.3 by @​priya-kinthali inactions/setup-python#1073In scope of this release we updated actions/cache package to ensure continued support and compatibility, as older versions of the package are now deprecated. For more information please refer to the toolkit/cache.Full Changelog: actions/setup-python@v4.8.0...v4.9.0v4.8.0What's ChangedIn scope of this release we added support for GraalPy (actions/setup-python#694). You can use this snippet to set up GraalPy:steps:- uses: actions/checkout@v4- uses: actions/setup-python@v4   with:    python-version: 'graalpy-22.3' - run: python my_script.pyBesides, the release contains such changes as:Trim python version when reading from file by @​FerranPares inactions/setup-python#628Use non-deprecated versions in examples by @​jeffwidman inactions/setup-python#724Change deprecation comment to past tense by @​jeffwidman inactions/setup-python#723Bump @​babel/traverse from 7.9.0 to 7.23.2 by @​dependabot inactions/setup-python#743advanced-usage.md: Encourage the use actions/checkout@v4 by @​cclauss inactions/setup-python#729Examples now use checkout@v4 by @​simonw inactions/setup-python#738Update actions/checkout to v4 by @​dmitry-shibanov inactions/setup-python#761New Contributors@​FerranPares made their first contribution inactions/setup-python#628@​timfel made their first contribution inactions/setup-python#694@​jeffwidman made their first contribution inactions/setup-python#724Full Changelog: actions/setup-python@v4...v4.8.0... (truncated)Commitsa26af69 Bump ts-jest from 29.1.2 to 29.3.2 (#1081)30eafe9 Bump prettier from 2.8.8 to 3.5.3 (#1046)5d95bc1 Bump semver and @​types/semver (#1091)6ed2c67 Fix for Candidate Not Iterable Error (#1082)e348410 Remove Ubuntu 20.04 from workflows due to deprecation from 2025-04-15 (#1065)8d9ed9a Add e2e Testing for free threaded and Bump @​action/cache from 4.0.0 to 4.0.3 ...19e4675 Add support for .tool-versions file in setup-python (#1043)6fd11e1 Bump @​actions/glob from 0.4.0 to 0.5.0 (#1015)9e62be8 Support free threaded Python versions like '3.13t' (#973)6ca8e85 Bump @​vercel/ncc from 0.38.1 to 0.38.3 (#1016)Additional commits viewable in compare viewUpdates peter-evans/create-pull-request from 5 to 7Release notesSourced from peter-evans/create-pull-request's releases.Create Pull Request v7.0.0✨ Now supports commit signing with bot-generated tokens! See "What's new" below. ✍️🤖Behaviour changesAction input git-token has been renamed branch-token, to be more clear about its purpose. The branch-token is the token that the action will use to create and update the branch.The action now handles requests that have been rate-limited by GitHub. Requests hitting a primary rate limit will retry twice, for a total of three attempts. Requests hitting a secondary rate limit will not be retried.The pull-request-operation output now returns none when no operation was executed.Removed deprecated output environment variable PULL_REQUEST_NUMBER. Please use the pull-request-number action output instead.What's newThe action can now sign commits as github-actions[bot] when using GITHUB_TOKEN, or your own bot when using GitHub App tokens. See commit signing for details.Action input draft now accepts a new value always-true. This will set the pull request to draft status when the pull request is updated, as well as on creation.A new action input maintainer-can-modify indicates whether maintainers can modify the pull request. The default is true, which retains the existing behaviour of the action.A new output pull-request-commits-verified returns true or false, indicating whether GitHub considers the signature of the branch's commits to be verified.What's Changedbuild(deps-dev): bump @​types/node from 18.19.36 to 18.19.39 by @​dependabot inpeter-evans/create-pull-request#3000build(deps-dev): bump ts-jest from 29.1.5 to 29.2.0 by @​dependabot inpeter-evans/create-pull-request#3008build(deps-dev): bump prettier from 3.3.2 to 3.3.3 by @​dependabot inpeter-evans/create-pull-request#3018build(deps-dev): bump ts-jest from 29.2.0 to 29.2.2 by @​dependabot inpeter-evans/create-pull-request#3019build(deps-dev): bump eslint-plugin-prettier from 5.1.3 to 5.2.1 by @​dependabot inpeter-evans/create-pull-request#3035build(deps-dev): bump @​types/node from 18.19.39 to 18.19.41 by @​dependabot inpeter-evans/create-pull-request#3037build(deps): bump undici from 6.19.2 to 6.19.4 by @​dependabot inpeter-evans/create-pull-request#3036build(deps-dev): bump ts-jest from 29.2.2 to 29.2.3 by @​dependabot inpeter-evans/create-pull-request#3038build(deps-dev): bump @​types/node from 18.19.41 to 18.19.42 by @​dependabot inpeter-evans/create-pull-request#3070build(deps): bump undici from 6.19.4 to 6.19.5 by @​dependabot inpeter-evans/create-pull-request#3086build(deps-dev): bump @​types/node from 18.19.42 to 18.19.43 by @​dependabot inpeter-evans/create-pull-request#3087build(deps-dev): bump ts-jest from 29.2.3 to 29.2.4 by @​dependabot inpeter-evans/create-pull-request#3088build(deps): bump undici from 6.19.5 to 6.19.7 by @​dependabot inpeter-evans/create-pull-request#3145build(deps-dev): bump @​types/node from 18.19.43 to 18.19.44 by @​dependabot inpeter-evans/create-pull-request#3144Update distribution by @​actions-bot inpeter-evans/create-pull-request#3154build(deps): bump undici from 6.19.7 to 6.19.8 by @​dependabot inpeter-evans/create-pull-request#3213build(deps-dev): bump @​types/node from 18.19.44 to 18.19.45 by @​dependabot inpeter-evans/create-pull-request#3214Update distribution by @​actions-bot inpeter-evans/create-pull-request#3221build(deps-dev): bump eslint-import-resolver-typescript from 3.6.1 to 3.6.3 by @​dependabot inpeter-evans/create-pull-request#3255build(deps-dev): bump @​types/node from 18.19.45 to 18.19.46 by @​dependabot inpeter-evans/create-pull-request#3254build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5 by @​dependabot inpeter-evans/create-pull-request#3256v7 - signed commits by @​peter-evans inpeter-evans/create-pull-request#3057New Contributors@​rustycl0ck made their first contribution inpeter-evans/create-pull-request#3057Full Changelog: peter-evans/create-pull-request@v6.1.0...v7.0.0Create Pull Request v6.1.0✨ Adds pull-request-branch as an action output.What's Changed... (truncated)Commits271a8d0 fix: suppress output for some git operations (#3776)6f7efd1 test: update cpr-example-command13c47c5 build(deps-dev): bump prettier from 3.5.1 to 3.5.2 (#3754)63e5829 build(deps): bump @​octokit/plugin-paginate-rest from 11.4.2 to 11.4.3 (#3753)a92c90f build(deps-dev): bump eslint-import-resolver-typescript (#3752)b23b62d build(deps-dev): bump ts-jest from 29.2.5 to 29.2.6 (#3751)dd2324f fix: use showFileAtRefBase64 to read per-commit file contents (#3744)367180c ci: remove testv5 cmd25575a1 build: update distribution (#3736)a56e7a5 build(deps): bump @​octokit/core from 6.1.3 to 6.1.4 (#3711)Additional commits viewable in compare viewDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting@dependabot rebase.Dependabot commands and optionsYou can trigger Dependabot actions by commenting on this PR:@dependabot rebase will rebase this PR@dependabot recreate will recreate this PR, overwriting any edits that have been made to it@dependabot merge will merge this PR after your CI passes on it@dependabot squash and merge will squash and merge this PR after your CI passes on it@dependabot cancel merge will cancel a previously requested merge and block automerging@dependabot reopen will reopen this PR if it is closed@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditionsReviewed-by: Vladimir Vshivkov
vladimirvshivkov added a commit to opentelekomcloud-infra/system-config that referenced this pull requestMay 21, 2025
….yamladding users to base (#1248)adding users to baseReviewed-by: Vladimir VshivkovAddition of docker check of dependabot for system-config repository on daily bases (#1255)1254 - Addition of docker check of dependabot for system-config repositoryAddapted dependabot.yaml for docker check on daily basescloses#1254Reviewed-by: Vladimir Vshivkovchore: update helm chart dependencies (#1257)Update helm chart dependenciesHelm Chart Dependencies Updatesvictoria-metrics-cluster (victoria-metrics-cluster)victoria-metrics-cluster: 0.21.0 → 0.22.1kube-prometheus-stack (kube-prometheus-stack)kube-prometheus-stack: 72.3.0 → 72.5.0victoria-metrics-auth (victoria-metrics-auth)victoria-metrics-auth: 0.13.0 → 0.14.1Automatically created PR for helm chart dependencies updates. Please check before merge!Reviewed-by: Vladimir VshivkovEnhance dependabot configuration to include GitHub Actions and update scheduling for Helm and Docker. Added daily checks at 09:00 for all specified ecosystems. (#1258)Enhance dependabot configuration to include GitHub Actionsand update scheduling for Helm and Docker.Added daily checks at 09:00 for all specified ecosystems.Reviewed-by: Vladimir Hasko <vladimirhasko@gmail.com>Bump the all-actions group with 4 updates (#1260)Bump the all-actions group with 4 updatesBumps the all-actions group with 4 updates: actions/checkout, azure/setup-helm, actions/setup-python and peter-evans/create-pull-request.Updates actions/checkout from 3 to 4Release notesSourced from actions/checkout's releases.v4.0.0What's ChangedUpdate default runtime to node20 by @​takost inactions/checkout#1436Support fetching without the --progress option by @​simonbaird inactions/checkout#1067Release 4.0.0 by @​takost inactions/checkout#1447New Contributors@​takost made their first contribution inactions/checkout#1436@​simonbaird made their first contribution inactions/checkout#1067Full Changelog: actions/checkout@v3...v4.0.0v3.6.0What's ChangedMark test scripts with Bash'isms to be run via Bash by @​dscho inactions/checkout#1377Add option to fetch tags even if fetch-depth > 0 by @​RobertWieczoreck inactions/checkout#579Release 3.6.0 by @​luketomlinson inactions/checkout#1437New Contributors@​RobertWieczoreck made their first contribution inactions/checkout#579@​luketomlinson made their first contribution inactions/checkout#1437Full Changelog: actions/checkout@v3.5.3...v3.6.0v3.5.3What's ChangedFix: Checkout Issue in self hosted runner due to faulty submodule check-ins by @​megamanics inactions/checkout#1196Fix typos found by codespell by @​DimitriPapadopoulos inactions/checkout#1287Add support for sparse checkouts by @​dscho and @​dfdez inactions/checkout#1369Release v3.5.3 by @​TingluoHuang inactions/checkout#1376New Contributors@​megamanics made their first contribution inactions/checkout#1196@​DimitriPapadopoulos made their first contribution inactions/checkout#1287@​dfdez made their first contribution inactions/checkout#1369Full Changelog: actions/checkout@v3...v3.5.3v3.5.2What's ChangedFix: Use correct API url / endpoint in GHES by @​fhammerl inactions/checkout#1289 based on#1286 by @​1newsrFull Changelog: actions/checkout@v3.5.1...v3.5.2v3.5.1What's ChangedImprove checkout performance on Windows runners by upgrading @​actions/github dependency by @​BrettDong inactions/checkout#1246New Contributors@​BrettDong made their first contribution inactions/checkout#1246... (truncated)ChangelogSourced from actions/checkout's changelog.Changelogv4.2.2url-helper.ts now leverages well-known environment variables by @​jww3 inactions/checkout#1941Expand unit test coverage for isGhes by @​jww3 inactions/checkout#1946v4.2.1Check out other refs/* by commit if provided, fall back to ref by @​orhantoy inactions/checkout#1924v4.2.0Add Ref and Commit outputs by @​lucacome inactions/checkout#1180Dependency updates by @​dependabot-actions/checkout#1777,actions/checkout#1872v4.1.7Bump the minor-npm-dependencies group across 1 directory with 4 updates by @​dependabot inactions/checkout#1739Bump actions/checkout from 3 to 4 by @​dependabot inactions/checkout#1697Check out other refs/* by commit by @​orhantoy inactions/checkout#1774Pin actions/checkout's own workflows to a known, good, stable version. by @​jww3 inactions/checkout#1776v4.1.6Check platform to set archive extension appropriately by @​cory-miller inactions/checkout#1732v4.1.5Update NPM dependencies by @​cory-miller inactions/checkout#1703Bump github/codeql-action from 2 to 3 by @​dependabot inactions/checkout#1694Bump actions/setup-node from 1 to 4 by @​dependabot inactions/checkout#1696Bump actions/upload-artifact from 2 to 4 by @​dependabot inactions/checkout#1695README: Suggest user.email to be 41898282+github-actions[bot]@users.noreply.github.com by @​cory-miller inactions/checkout#1707v4.1.4Disable extensions.worktreeConfig when disabling sparse-checkout by @​jww3 inactions/checkout#1692Add dependabot config by @​cory-miller inactions/checkout#1688Bump the minor-actions-dependencies group with 2 updates by @​dependabot inactions/checkout#1693Bump word-wrap from 1.2.3 to 1.2.5 by @​dependabot inactions/checkout#1643v4.1.3Check git version before attempting to disable sparse-checkout by @​jww3 inactions/checkout#1656Add SSH user parameter by @​cory-miller inactions/checkout#1685Update actions/checkout version in update-main-version.yml by @​jww3 inactions/checkout#1650v4.1.2Fix: Disable sparse checkout whenever sparse-checkout option is not present @​dscho inactions/checkout#1598v4.1.1Correct link to GitHub Docs by @​peterbe inactions/checkout#1511Link to release page from what's new section by @​cory-miller inactions/checkout#1514v4.1.0Add support for partial checkout filters... (truncated)Commits11bd719 Prepare 4.2.2 Release (#1953)e3d2460 Expand unit test coverage (#1946)163217d url-helper.ts now leverages well-known environment variables. (#1941)eef6144 Prepare 4.2.1 release (#1925)6b42224 Add workflow file for publishing releases to immutable action package (#1919)de5a000 Check out other refs/* by commit if provided, fall back to ref (#1924)d632683 Prepare 4.2.0 release (#1878)6d193bf Bump braces from 3.0.2 to 3.0.3 (#1777)db0cee9 Bump the minor-npm-dependencies group across 1 directory with 4 updates (#1872)b684943 Add Ref and Commit outputs (#1180)Additional commits viewable in compare viewUpdates azure/setup-helm from 3 to 4Release notesSourced from azure/setup-helm's releases.v4.0.0v3.5 releaseBump @​actions/core version to remove output warning.v3.4 releaseImproves the querying method to find the latest Helm release. Takes advantage of new GitHub api changes.v3.3 releaseAdd token input. Needed for fetching latestv3.1 releaseSwap to GraphQL GitHub APIChangelogSourced from azure/setup-helm's changelog.Change Log[4.3.0] - 2025-02-15[4.2.0] - 2024-04-15[4.1.0] - 2024-03-01[4.0.0] - 2024-02-12Commitsb9e5190 build0e8654b Release setup-helm version 4.3.0 (#162)b48e1df feat: log when restoring from cache (#152)855ae7a Bump the actions group across 1 directory with 3 updates (#159)124c6d8 Dependencies Update (#157)048f4e7 Bump the actions group across 1 directory with 2 updates (#151)8618769 Bump the actions group across 1 directory with 4 updates (#149)4eb898e Bump the actions group across 1 directory with 2 updates (#145)7a2001c Bump the actions group across 1 directory with 2 updates (#143)e90c86c Bump the actions group across 1 directory with 9 updates (#141)Additional commits viewable in compare viewUpdates actions/setup-python from 4 to 5Release notesSourced from actions/setup-python's releases.v5.0.0What's ChangedIn scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772). Besides, we update dependencies to the latest versions.Full Changelog: actions/setup-python@v4.8.0...v5.0.0v4.9.1What's ChangedAdd workflow file for publishing releases to immutable action package by @​aparnajyothi-y inactions/setup-python#1084Full Changelog: actions/setup-python@v4...v4.9.1v4.9.0What's ChangedUpgrade actions/cache to 4.0.3 by @​priya-kinthali inactions/setup-python#1073In scope of this release we updated actions/cache package to ensure continued support and compatibility, as older versions of the package are now deprecated. For more information please refer to the toolkit/cache.Full Changelog: actions/setup-python@v4.8.0...v4.9.0v4.8.0What's ChangedIn scope of this release we added support for GraalPy (actions/setup-python#694). You can use this snippet to set up GraalPy:steps:- uses: actions/checkout@v4- uses: actions/setup-python@v4  with:    python-version: 'graalpy-22.3'- run: python my_script.pyBesides, the release contains such changes as:Trim python version when reading from file by @​FerranPares inactions/setup-python#628Use non-deprecated versions in examples by @​jeffwidman inactions/setup-python#724Change deprecation comment to past tense by @​jeffwidman inactions/setup-python#723Bump @​babel/traverse from 7.9.0 to 7.23.2 by @​dependabot inactions/setup-python#743advanced-usage.md: Encourage the use actions/checkout@v4 by @​cclauss inactions/setup-python#729Examples now use checkout@v4 by @​simonw inactions/setup-python#738Update actions/checkout to v4 by @​dmitry-shibanov inactions/setup-python#761New Contributors@​FerranPares made their first contribution inactions/setup-python#628@​timfel made their first contribution inactions/setup-python#694@​jeffwidman made their first contribution inactions/setup-python#724Full Changelog: actions/setup-python@v4...v4.8.0... (truncated)Commitsa26af69 Bump ts-jest from 29.1.2 to 29.3.2 (#1081)30eafe9 Bump prettier from 2.8.8 to 3.5.3 (#1046)5d95bc1 Bump semver and @​types/semver (#1091)6ed2c67 Fix for Candidate Not Iterable Error (#1082)e348410 Remove Ubuntu 20.04 from workflows due to deprecation from 2025-04-15 (#1065)8d9ed9a Add e2e Testing for free threaded and Bump @​action/cache from 4.0.0 to 4.0.3 ...19e4675 Add support for .tool-versions file in setup-python (#1043)6fd11e1 Bump @​actions/glob from 0.4.0 to 0.5.0 (#1015)9e62be8 Support free threaded Python versions like '3.13t' (#973)6ca8e85 Bump @​vercel/ncc from 0.38.1 to 0.38.3 (#1016)Additional commits viewable in compare viewUpdates peter-evans/create-pull-request from 5 to 7Release notesSourced from peter-evans/create-pull-request's releases.Create Pull Request v7.0.0✨ Now supports commit signing with bot-generated tokens! See "What's new" below. ✍️🤖Behaviour changesAction input git-token has been renamed branch-token, to be more clear about its purpose. The branch-token is the token that the action will use to create and update the branch.The action now handles requests that have been rate-limited by GitHub. Requests hitting a primary rate limit will retry twice, for a total of three attempts. Requests hitting a secondary rate limit will not be retried.The pull-request-operation output now returns none when no operation was executed.Removed deprecated output environment variable PULL_REQUEST_NUMBER. Please use the pull-request-number action output instead.What's newThe action can now sign commits as github-actions[bot] when using GITHUB_TOKEN, or your own bot when using GitHub App tokens. See commit signing for details.Action input draft now accepts a new value always-true. This will set the pull request to draft status when the pull request is updated, as well as on creation.A new action input maintainer-can-modify indicates whether maintainers can modify the pull request. The default is true, which retains the existing behaviour of the action.A new output pull-request-commits-verified returns true or false, indicating whether GitHub considers the signature of the branch's commits to be verified.What's Changedbuild(deps-dev): bump @​types/node from 18.19.36 to 18.19.39 by @​dependabot inpeter-evans/create-pull-request#3000build(deps-dev): bump ts-jest from 29.1.5 to 29.2.0 by @​dependabot inpeter-evans/create-pull-request#3008build(deps-dev): bump prettier from 3.3.2 to 3.3.3 by @​dependabot inpeter-evans/create-pull-request#3018build(deps-dev): bump ts-jest from 29.2.0 to 29.2.2 by @​dependabot inpeter-evans/create-pull-request#3019build(deps-dev): bump eslint-plugin-prettier from 5.1.3 to 5.2.1 by @​dependabot inpeter-evans/create-pull-request#3035build(deps-dev): bump @​types/node from 18.19.39 to 18.19.41 by @​dependabot inpeter-evans/create-pull-request#3037build(deps): bump undici from 6.19.2 to 6.19.4 by @​dependabot inpeter-evans/create-pull-request#3036build(deps-dev): bump ts-jest from 29.2.2 to 29.2.3 by @​dependabot inpeter-evans/create-pull-request#3038build(deps-dev): bump @​types/node from 18.19.41 to 18.19.42 by @​dependabot inpeter-evans/create-pull-request#3070build(deps): bump undici from 6.19.4 to 6.19.5 by @​dependabot inpeter-evans/create-pull-request#3086build(deps-dev): bump @​types/node from 18.19.42 to 18.19.43 by @​dependabot inpeter-evans/create-pull-request#3087build(deps-dev): bump ts-jest from 29.2.3 to 29.2.4 by @​dependabot inpeter-evans/create-pull-request#3088build(deps): bump undici from 6.19.5 to 6.19.7 by @​dependabot inpeter-evans/create-pull-request#3145build(deps-dev): bump @​types/node from 18.19.43 to 18.19.44 by @​dependabot inpeter-evans/create-pull-request#3144Update distribution by @​actions-bot inpeter-evans/create-pull-request#3154build(deps): bump undici from 6.19.7 to 6.19.8 by @​dependabot inpeter-evans/create-pull-request#3213build(deps-dev): bump @​types/node from 18.19.44 to 18.19.45 by @​dependabot inpeter-evans/create-pull-request#3214Update distribution by @​actions-bot inpeter-evans/create-pull-request#3221build(deps-dev): bump eslint-import-resolver-typescript from 3.6.1 to 3.6.3 by @​dependabot inpeter-evans/create-pull-request#3255build(deps-dev): bump @​types/node from 18.19.45 to 18.19.46 by @​dependabot inpeter-evans/create-pull-request#3254build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5 by @​dependabot inpeter-evans/create-pull-request#3256v7 - signed commits by @​peter-evans inpeter-evans/create-pull-request#3057New Contributors@​rustycl0ck made their first contribution inpeter-evans/create-pull-request#3057Full Changelog: peter-evans/create-pull-request@v6.1.0...v7.0.0Create Pull Request v6.1.0✨ Adds pull-request-branch as an action output.What's Changed... (truncated)Commits271a8d0 fix: suppress output for some git operations (#3776)6f7efd1 test: update cpr-example-command13c47c5 build(deps-dev): bump prettier from 3.5.1 to 3.5.2 (#3754)63e5829 build(deps): bump @​octokit/plugin-paginate-rest from 11.4.2 to 11.4.3 (#3753)a92c90f build(deps-dev): bump eslint-import-resolver-typescript (#3752)b23b62d build(deps-dev): bump ts-jest from 29.2.5 to 29.2.6 (#3751)dd2324f fix: use showFileAtRefBase64 to read per-commit file contents (#3744)367180c ci: remove testv5 cmd25575a1 build: update distribution (#3736)a56e7a5 build(deps): bump @​octokit/core from 6.1.3 to 6.1.4 (#3711)Additional commits viewable in compare viewDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting@dependabot rebase.Dependabot commands and optionsYou can trigger Dependabot actions by commenting on this PR:@dependabot rebase will rebase this PR@dependabot recreate will recreate this PR, overwriting any edits that have been made to it@dependabot merge will merge this PR after your CI passes on it@dependabot squash and merge will squash and merge this PR after your CI passes on it@dependabot cancel merge will cancel a previously requested merge and block automerging@dependabot reopen will reopen this PR if it is closed@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditionsReviewed-by: Vladimir Vshivkov
@timfeltimfel mentioned this pull requestJun 23, 2025
LukasCuperDT pushed a commit to opentelekomcloud-infra/system-config that referenced this pull requestAug 19, 2025
Bump the all-actions group with 4 updatesBumps the all-actions group with 4 updates: actions/checkout, azure/setup-helm, actions/setup-python and peter-evans/create-pull-request.Updates actions/checkout from 3 to 4Release notesSourced from actions/checkout's releases.v4.0.0What's ChangedUpdate default runtime to node20 by @​takost inactions/checkout#1436Support fetching without the --progress option by @​simonbaird inactions/checkout#1067Release 4.0.0 by @​takost inactions/checkout#1447New Contributors@​takost made their first contribution inactions/checkout#1436@​simonbaird made their first contribution inactions/checkout#1067Full Changelog: actions/checkout@v3...v4.0.0v3.6.0What's ChangedMark test scripts with Bash'isms to be run via Bash by @​dscho inactions/checkout#1377Add option to fetch tags even if fetch-depth > 0 by @​RobertWieczoreck inactions/checkout#579Release 3.6.0 by @​luketomlinson inactions/checkout#1437New Contributors@​RobertWieczoreck made their first contribution inactions/checkout#579@​luketomlinson made their first contribution inactions/checkout#1437Full Changelog: actions/checkout@v3.5.3...v3.6.0v3.5.3What's ChangedFix: Checkout Issue in self hosted runner due to faulty submodule check-ins by @​megamanics inactions/checkout#1196Fix typos found by codespell by @​DimitriPapadopoulos inactions/checkout#1287Add support for sparse checkouts by @​dscho and @​dfdez inactions/checkout#1369Release v3.5.3 by @​TingluoHuang inactions/checkout#1376New Contributors@​megamanics made their first contribution inactions/checkout#1196@​DimitriPapadopoulos made their first contribution inactions/checkout#1287@​dfdez made their first contribution inactions/checkout#1369Full Changelog: actions/checkout@v3...v3.5.3v3.5.2What's ChangedFix: Use correct API url / endpoint in GHES by @​fhammerl inactions/checkout#1289 based on#1286 by @​1newsrFull Changelog: actions/checkout@v3.5.1...v3.5.2v3.5.1What's ChangedImprove checkout performance on Windows runners by upgrading @​actions/github dependency by @​BrettDong inactions/checkout#1246New Contributors@​BrettDong made their first contribution inactions/checkout#1246... (truncated)ChangelogSourced from actions/checkout's changelog.Changelogv4.2.2url-helper.ts now leverages well-known environment variables by @​jww3 inactions/checkout#1941Expand unit test coverage for isGhes by @​jww3 inactions/checkout#1946v4.2.1Check out other refs/* by commit if provided, fall back to ref by @​orhantoy inactions/checkout#1924v4.2.0Add Ref and Commit outputs by @​lucacome inactions/checkout#1180Dependency updates by @​dependabot-actions/checkout#1777,actions/checkout#1872v4.1.7Bump the minor-npm-dependencies group across 1 directory with 4 updates by @​dependabot inactions/checkout#1739Bump actions/checkout from 3 to 4 by @​dependabot inactions/checkout#1697Check out other refs/* by commit by @​orhantoy inactions/checkout#1774Pin actions/checkout's own workflows to a known, good, stable version. by @​jww3 inactions/checkout#1776v4.1.6Check platform to set archive extension appropriately by @​cory-miller inactions/checkout#1732v4.1.5Update NPM dependencies by @​cory-miller inactions/checkout#1703Bump github/codeql-action from 2 to 3 by @​dependabot inactions/checkout#1694Bump actions/setup-node from 1 to 4 by @​dependabot inactions/checkout#1696Bump actions/upload-artifact from 2 to 4 by @​dependabot inactions/checkout#1695README: Suggest user.email to be 41898282+github-actions[bot]@users.noreply.github.com by @​cory-miller inactions/checkout#1707v4.1.4Disable extensions.worktreeConfig when disabling sparse-checkout by @​jww3 inactions/checkout#1692Add dependabot config by @​cory-miller inactions/checkout#1688Bump the minor-actions-dependencies group with 2 updates by @​dependabot inactions/checkout#1693Bump word-wrap from 1.2.3 to 1.2.5 by @​dependabot inactions/checkout#1643v4.1.3Check git version before attempting to disable sparse-checkout by @​jww3 inactions/checkout#1656Add SSH user parameter by @​cory-miller inactions/checkout#1685Update actions/checkout version in update-main-version.yml by @​jww3 inactions/checkout#1650v4.1.2Fix: Disable sparse checkout whenever sparse-checkout option is not present @​dscho inactions/checkout#1598v4.1.1Correct link to GitHub Docs by @​peterbe inactions/checkout#1511Link to release page from what's new section by @​cory-miller inactions/checkout#1514v4.1.0Add support for partial checkout filters... (truncated)Commits11bd719 Prepare 4.2.2 Release (#1953)e3d2460 Expand unit test coverage (#1946)163217d url-helper.ts now leverages well-known environment variables. (#1941)eef6144 Prepare 4.2.1 release (#1925)6b42224 Add workflow file for publishing releases to immutable action package (#1919)de5a000 Check out other refs/* by commit if provided, fall back to ref (#1924)d632683 Prepare 4.2.0 release (#1878)6d193bf Bump braces from 3.0.2 to 3.0.3 (#1777)db0cee9 Bump the minor-npm-dependencies group across 1 directory with 4 updates (#1872)b684943 Add Ref and Commit outputs (#1180)Additional commits viewable in compare viewUpdates azure/setup-helm from 3 to 4Release notesSourced from azure/setup-helm's releases.v4.0.0#121 update to node20 as node16 is deprecatedv3.5 releaseBump @​actions/core version to remove output warning.v3.4 releaseImproves the querying method to find the latest Helm release. Takes advantage of new GitHub api changes.v3.3 releaseAdd token input. Needed for fetching latestv3.1 releaseSwap to GraphQL GitHub APIChangelogSourced from azure/setup-helm's changelog.Change Log[4.3.0] - 2025-02-15#152 feat: log when restoring from cache#157 Dependencies Update#137 Add dependabot[4.2.0] - 2024-04-15#124 Fix OS detection and download OS-native archive extension[4.1.0] - 2024-03-01#130 switches to use Helm published file to read latest version instead of using GitHub releases[4.0.0] - 2024-02-12#121 update to node20 as node16 is deprecatedCommitsb9e5190 build0e8654b Release setup-helm version 4.3.0 (#162)b48e1df feat: log when restoring from cache (#152)855ae7a Bump the actions group across 1 directory with 3 updates (#159)124c6d8 Dependencies Update (#157)048f4e7 Bump the actions group across 1 directory with 2 updates (#151)8618769 Bump the actions group across 1 directory with 4 updates (#149)4eb898e Bump the actions group across 1 directory with 2 updates (#145)7a2001c Bump the actions group across 1 directory with 2 updates (#143)e90c86c Bump the actions group across 1 directory with 9 updates (#141)Additional commits viewable in compare viewUpdates actions/setup-python from 4 to 5Release notesSourced from actions/setup-python's releases.v5.0.0What's ChangedIn scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772). Besides, we update dependencies to the latest versions.Full Changelog: actions/setup-python@v4.8.0...v5.0.0v4.9.1What's ChangedAdd workflow file for publishing releases to immutable action package by @​aparnajyothi-y inactions/setup-python#1084Full Changelog: actions/setup-python@v4...v4.9.1v4.9.0What's ChangedUpgrade actions/cache to 4.0.3 by @​priya-kinthali inactions/setup-python#1073In scope of this release we updated actions/cache package to ensure continued support and compatibility, as older versions of the package are now deprecated. For more information please refer to the toolkit/cache.Full Changelog: actions/setup-python@v4.8.0...v4.9.0v4.8.0What's ChangedIn scope of this release we added support for GraalPy (actions/setup-python#694). You can use this snippet to set up GraalPy:steps:- uses: actions/checkout@v4- uses: actions/setup-python@v4   with:    python-version: 'graalpy-22.3' - run: python my_script.pyBesides, the release contains such changes as:Trim python version when reading from file by @​FerranPares inactions/setup-python#628Use non-deprecated versions in examples by @​jeffwidman inactions/setup-python#724Change deprecation comment to past tense by @​jeffwidman inactions/setup-python#723Bump @​babel/traverse from 7.9.0 to 7.23.2 by @​dependabot inactions/setup-python#743advanced-usage.md: Encourage the use actions/checkout@v4 by @​cclauss inactions/setup-python#729Examples now use checkout@v4 by @​simonw inactions/setup-python#738Update actions/checkout to v4 by @​dmitry-shibanov inactions/setup-python#761New Contributors@​FerranPares made their first contribution inactions/setup-python#628@​timfel made their first contribution inactions/setup-python#694@​jeffwidman made their first contribution inactions/setup-python#724Full Changelog: actions/setup-python@v4...v4.8.0... (truncated)Commitsa26af69 Bump ts-jest from 29.1.2 to 29.3.2 (#1081)30eafe9 Bump prettier from 2.8.8 to 3.5.3 (#1046)5d95bc1 Bump semver and @​types/semver (#1091)6ed2c67 Fix for Candidate Not Iterable Error (#1082)e348410 Remove Ubuntu 20.04 from workflows due to deprecation from 2025-04-15 (#1065)8d9ed9a Add e2e Testing for free threaded and Bump @​action/cache from 4.0.0 to 4.0.3 ...19e4675 Add support for .tool-versions file in setup-python (#1043)6fd11e1 Bump @​actions/glob from 0.4.0 to 0.5.0 (#1015)9e62be8 Support free threaded Python versions like '3.13t' (#973)6ca8e85 Bump @​vercel/ncc from 0.38.1 to 0.38.3 (#1016)Additional commits viewable in compare viewUpdates peter-evans/create-pull-request from 5 to 7Release notesSourced from peter-evans/create-pull-request's releases.Create Pull Request v7.0.0✨ Now supports commit signing with bot-generated tokens! See "What's new" below. ✍️🤖Behaviour changesAction input git-token has been renamed branch-token, to be more clear about its purpose. The branch-token is the token that the action will use to create and update the branch.The action now handles requests that have been rate-limited by GitHub. Requests hitting a primary rate limit will retry twice, for a total of three attempts. Requests hitting a secondary rate limit will not be retried.The pull-request-operation output now returns none when no operation was executed.Removed deprecated output environment variable PULL_REQUEST_NUMBER. Please use the pull-request-number action output instead.What's newThe action can now sign commits as github-actions[bot] when using GITHUB_TOKEN, or your own bot when using GitHub App tokens. See commit signing for details.Action input draft now accepts a new value always-true. This will set the pull request to draft status when the pull request is updated, as well as on creation.A new action input maintainer-can-modify indicates whether maintainers can modify the pull request. The default is true, which retains the existing behaviour of the action.A new output pull-request-commits-verified returns true or false, indicating whether GitHub considers the signature of the branch's commits to be verified.What's Changedbuild(deps-dev): bump @​types/node from 18.19.36 to 18.19.39 by @​dependabot inpeter-evans/create-pull-request#3000build(deps-dev): bump ts-jest from 29.1.5 to 29.2.0 by @​dependabot inpeter-evans/create-pull-request#3008build(deps-dev): bump prettier from 3.3.2 to 3.3.3 by @​dependabot inpeter-evans/create-pull-request#3018build(deps-dev): bump ts-jest from 29.2.0 to 29.2.2 by @​dependabot inpeter-evans/create-pull-request#3019build(deps-dev): bump eslint-plugin-prettier from 5.1.3 to 5.2.1 by @​dependabot inpeter-evans/create-pull-request#3035build(deps-dev): bump @​types/node from 18.19.39 to 18.19.41 by @​dependabot inpeter-evans/create-pull-request#3037build(deps): bump undici from 6.19.2 to 6.19.4 by @​dependabot inpeter-evans/create-pull-request#3036build(deps-dev): bump ts-jest from 29.2.2 to 29.2.3 by @​dependabot inpeter-evans/create-pull-request#3038build(deps-dev): bump @​types/node from 18.19.41 to 18.19.42 by @​dependabot inpeter-evans/create-pull-request#3070build(deps): bump undici from 6.19.4 to 6.19.5 by @​dependabot inpeter-evans/create-pull-request#3086build(deps-dev): bump @​types/node from 18.19.42 to 18.19.43 by @​dependabot inpeter-evans/create-pull-request#3087build(deps-dev): bump ts-jest from 29.2.3 to 29.2.4 by @​dependabot inpeter-evans/create-pull-request#3088build(deps): bump undici from 6.19.5 to 6.19.7 by @​dependabot inpeter-evans/create-pull-request#3145build(deps-dev): bump @​types/node from 18.19.43 to 18.19.44 by @​dependabot inpeter-evans/create-pull-request#3144Update distribution by @​actions-bot inpeter-evans/create-pull-request#3154build(deps): bump undici from 6.19.7 to 6.19.8 by @​dependabot inpeter-evans/create-pull-request#3213build(deps-dev): bump @​types/node from 18.19.44 to 18.19.45 by @​dependabot inpeter-evans/create-pull-request#3214Update distribution by @​actions-bot inpeter-evans/create-pull-request#3221build(deps-dev): bump eslint-import-resolver-typescript from 3.6.1 to 3.6.3 by @​dependabot inpeter-evans/create-pull-request#3255build(deps-dev): bump @​types/node from 18.19.45 to 18.19.46 by @​dependabot inpeter-evans/create-pull-request#3254build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5 by @​dependabot inpeter-evans/create-pull-request#3256v7 - signed commits by @​peter-evans inpeter-evans/create-pull-request#3057New Contributors@​rustycl0ck made their first contribution inpeter-evans/create-pull-request#3057Full Changelog: peter-evans/create-pull-request@v6.1.0...v7.0.0Create Pull Request v6.1.0✨ Adds pull-request-branch as an action output.What's Changed... (truncated)Commits271a8d0 fix: suppress output for some git operations (#3776)6f7efd1 test: update cpr-example-command13c47c5 build(deps-dev): bump prettier from 3.5.1 to 3.5.2 (#3754)63e5829 build(deps): bump @​octokit/plugin-paginate-rest from 11.4.2 to 11.4.3 (#3753)a92c90f build(deps-dev): bump eslint-import-resolver-typescript (#3752)b23b62d build(deps-dev): bump ts-jest from 29.2.5 to 29.2.6 (#3751)dd2324f fix: use showFileAtRefBase64 to read per-commit file contents (#3744)367180c ci: remove testv5 cmd25575a1 build: update distribution (#3736)a56e7a5 build(deps): bump @​octokit/core from 6.1.3 to 6.1.4 (#3711)Additional commits viewable in compare viewDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting@dependabot rebase.Dependabot commands and optionsYou can trigger Dependabot actions by commenting on this PR:@dependabot rebase will rebase this PR@dependabot recreate will recreate this PR, overwriting any edits that have been made to it@dependabot merge will merge this PR after your CI passes on it@dependabot squash and merge will squash and merge this PR after your CI passes on it@dependabot cancel merge will cancel a previously requested merge and block automerging@dependabot reopen will reopen this PR if it is closed@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditionsReviewed-by: Vladimir Vshivkov
tdfacer pushed a commit to ifit/setup-python that referenced this pull requestOct 7, 2025
* Add support for graalpy* add graalpy test workflow* format, lint and build* symlink graalpy binaries names* fix macos names for graalpy* Don't attempt to update pip for graalpy* Remove test schedule* Extract common getBinaryDirectory function for PyPy and GraalPy* Clean up and format* Pass GitHub token to GraalPy queries* Utilize pagination when querying GraalPy GitHub releases* Build* Fix lint errors* Deal with possible multiple artifacts for a single releases* Skip few GraalPy tests on windows - we don't have a windows release yet* Fix GraalPy test on Mac OS* Build* Skip one more GraalPy test on windows---------Co-authored-by: Michael Simacek <michael.simacek@oracle.com>
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

3 more reviewers

@kurtmckeekurtmckeekurtmckee left review comments

@msimacekmsimacekmsimacek left review comments

@dmitry-shibanovdmitry-shibanovdmitry-shibanov approved these changes

Reviewers whose approvals may not affect merge requirements

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

Add GraalPy support

4 participants

@timfel@dmitry-shibanov@msimacek@kurtmckee

[8]ページ先頭

©2009-2025 Movatter.jp