chore(deps): bump the dependencies group with 5 updates by dependabot[bot] · Pull Request #250 · openfga/python-sdk
Bumps the dependencies group with 5 updates:
| Package | From | To |
|---|---|---|
| actions/checkout | 6.0.0 |
6.0.1 |
| github/codeql-action | 4.31.6 |
4.31.9 |
| astral-sh/setup-uv | 7.1.4 |
7.1.6 |
| codecov/codecov-action | 5.5.1 |
5.5.2 |
| actions/upload-artifact | 5.0.0 |
6.0.0 |
Updates actions/checkout from 6.0.0 to 6.0.1
Release notes
Sourced from actions/checkout's releases.
v6.0.1
What's Changed
- Update all references from v5 and v4 to v6 by
@ericsciplein actions/checkout#2314- Add worktree support for persist-credentials includeIf by
@ericsciplein actions/checkout#2327- Clarify v6 README by
@ericsciplein actions/checkout#2328Full Changelog: actions/checkout@v6...v6.0.1
Commits
Updates github/codeql-action from 4.31.6 to 4.31.9
Release notes
Sourced from github/codeql-action's releases.
v4.31.9
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
4.31.9 - 16 Dec 2025
No user facing changes.
See the full CHANGELOG.md for more information.
v4.31.8
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
4.31.8 - 11 Dec 2025
- Update default CodeQL bundle version to 2.23.8. #3354
See the full CHANGELOG.md for more information.
v4.31.7
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
4.31.7 - 05 Dec 2025
- Update default CodeQL bundle version to 2.23.7. #3343
See the full CHANGELOG.md for more information.
Changelog
Sourced from github/codeql-action's changelog.
CodeQL Action Changelog
See the releases page for the relevant changes to the CodeQL CLI and language packs.
[UNRELEASED]
No user facing changes.
4.31.9 - 16 Dec 2025
No user facing changes.
4.31.8 - 11 Dec 2025
- Update default CodeQL bundle version to 2.23.8. #3354
4.31.7 - 05 Dec 2025
- Update default CodeQL bundle version to 2.23.7. #3343
4.31.6 - 01 Dec 2025
No user facing changes.
4.31.5 - 24 Nov 2025
- Update default CodeQL bundle version to 2.23.6. #3321
4.31.4 - 18 Nov 2025
No user facing changes.
4.31.3 - 13 Nov 2025
- CodeQL Action v3 will be deprecated in December 2026. The Action now logs a warning for customers who are running v3 but could be running v4. For more information, see Upcoming deprecation of CodeQL Action v3.
- Update default CodeQL bundle version to 2.23.5. #3288
4.31.2 - 30 Oct 2025
No user facing changes.
4.31.1 - 30 Oct 2025
- The
add-snippetsinput has been removed from theanalyzeaction. This input has been deprecated since CodeQL Action 3.26.4 in August 2024 when this removal was announced.4.31.0 - 24 Oct 2025
- Bump minimum CodeQL bundle version to 2.17.6. #3223
- When SARIF files are uploaded by the
analyzeorupload-sarifactions, the CodeQL Action automatically performs post-processing steps to prepare the data for the upload. Previously, these post-processing steps were only performed before an upload took place. We are now changing this so that the post-processing steps will always be performed, even when the SARIF files are not uploaded. This does not change anything for theupload-sarifaction. Foranalyze, this may affect Advanced Setup for CodeQL users who specify a value other thanalwaysfor theuploadinput. #3222
... (truncated)
Commits
5d4e8d1Merge pull request #3371 from github/update-v4.31.9-998798e341dc115fUpdate changelog for v4.31.9998798eMerge pull request #3352 from github/nickrolfe/jar-min-ff-cleanup5eb7519Merge pull request #3358 from github/henrymercer/database-upload-telemetryd29eddbExtract version number to constante962687Merge branch 'main' into henrymercer/database-upload-telemetry19c7f96RenameisOverlayBaseae5de9aUsegetErrorMessagein log too0cb8633Preferperformance.now()c07cc0dMerge pull request #3351 from github/henrymercer/ghec-dr-determine-tools-vers...- Additional commits viewable in compare view
Updates astral-sh/setup-uv from 7.1.4 to 7.1.6
Release notes
Sourced from astral-sh/setup-uv's releases.
v7.1.6 🌈 add OS version to cache key to prevent binary incompatibility
Changes
This release will invalidate your cache existing keys!
The os version e.g.
ubuntu-22.04is now part of the cache key. This prevents failing builds when a cache got populated with wheels built with different tools (e.g. glibc) than are present on the runner where the cache got restored.🐛 Bug fixes
- feat: add OS version to cache key to prevent binary incompatibility
@eifinger(#716)🧰 Maintenance
- chore: update known checksums for 0.9.17 @github-actions[bot] (#714)
⬆️ Dependency updates
- Bump actions/checkout from 5.0.0 to 6.0.1 @dependabot[bot] (#712)
- Bump actions/setup-node from 6.0.0 to 6.1.0 @dependabot[bot] (#715)
v7.1.5 🌈 allow setting
cache-local-pathwithoutenable-cache: trueChanges
astral-sh/setup-uv#612 fixed a faulty behavior where this action set
UV_CACHE_DIReven thoughenable-cachewasfalse. It also fixed the cases were the cache dir is already configured in a settings file likepyproject.tomlorUV_CACHE_DIRwas already set. Here the action shouldn't overwrite or setUV_CACHE_DIR.These fixes introduced an unwanted behavior: You can still set
cache-local-pathbut this action didn't do anything. This release fixes that.You can now use
cache-local-pathto automatically setUV_CACHE_DIReven whenenable-cacheisfalse(or gets set to false by default e.g. on self-hosted runners)- name: This is now possible uses: astral-sh/setup-uv@v7 with: enable-cache: false cache-local-path: "/path/to/cache"🐛 Bug fixes
- allow cache-local-path w/o enable-cache
@eifinger(#707)🧰 Maintenance
- set biome files.maxSize to 2MiB
@eifinger(#708)- chore: update known checksums for 0.9.16 @github-actions[bot] (#706)
- chore: update known checksums for 0.9.15 @github-actions[bot] (#704)
- chore: use
npm ci --ignore-scriptseverywhere@woodruffw(#699)- chore: update known checksums for 0.9.14 @github-actions[bot] (#700)
- chore: update known checksums for 0.9.13 @github-actions[bot] (#694)
... (truncated)
Commits
681c641Bump actions/checkout from 5.0.0 to 6.0.1 (#712)2e85713Bump actions/setup-node from 6.0.0 to 6.1.0 (#715)58b6d7bfix: add OS version to cache key to prevent binary incompatibility (#716)e8b52afchore: update known checksums for 0.9.17 (#714)ed21f2fBump peter-evans/create-pull-request from 7.0.8 to 7.0.9 (#695)93202d8bump dependencies (#709)5ce0900set biome files.maxSize to 2MiB (#708)4180991allow cache-local-path w/o enable-cache (#707)0439606Bump github/codeql-action from 4.30.9 to 4.31.6 (#698)7dd56c1chore: update known checksums for 0.9.16 (#706)- Additional commits viewable in compare view
Updates codecov/codecov-action from 5.5.1 to 5.5.2
Release notes
Sourced from codecov/codecov-action's releases.
v5.5.2
What's Changed
- check gpg only when skip-validation = false by
@maxweng-sentryin codecov/codecov-action#1894- chore:
disable_searchalignment by@freemanzMrojoin codecov/codecov-action#1881- chore(release): 5.5.2 by
@thomasrockhu-codecovin codecov/codecov-action#1902New Contributors
@maxweng-sentrymade their first contribution in codecov/codecov-action#1894@freemanzMrojomade their first contribution in codecov/codecov-action#1881Full Changelog: codecov/codecov-action@v5.5.1...v5.5.2
Changelog
Sourced from codecov/codecov-action's changelog.
v5.5.2
What's Changed
Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.1..v5.5.2
v5.5.1
What's Changed
- fix: overwrite pr number on fork by
@thomasrockhu-codecovin codecov/codecov-action#1871- build(deps): bump actions/checkout from 4.2.2 to 5.0.0 by
@app/dependabotin codecov/codecov-action#1868- build(deps): bump github/codeql-action from 3.29.9 to 3.29.11 by
@app/dependabotin codecov/codecov-action#1867- fix: update to use local app/ dir by
@thomasrockhu-codecovin codecov/codecov-action#1872- docs: fix typo in README by
@datalaterin codecov/codecov-action#1866- Document a
codecov-cliversion reference example by@webknjazin codecov/codecov-action#1774- build(deps): bump github/codeql-action from 3.28.18 to 3.29.9 by
@app/dependabotin codecov/codecov-action#1861- build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.2 by
@app/dependabotin codecov/codecov-action#1833Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.0..v5.5.1
v5.5.0
What's Changed
- feat: upgrade wrapper to 0.2.4 by
@jviallin codecov/codecov-action#1864- Pin actions/github-script by Git SHA by
@martincostelloin codecov/codecov-action#1859- fix: check reqs exist by
@joseph-sentryin codecov/codecov-action#1835- fix: Typo in README by
@spalmurrayin codecov/codecov-action#1838- docs: Refine OIDC docs by
@spalmurrayin codecov/codecov-action#1837- build(deps): bump github/codeql-action from 3.28.17 to 3.28.18 by
@app/dependabotin codecov/codecov-action#1829Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0
v5.4.3
What's Changed
- build(deps): bump github/codeql-action from 3.28.13 to 3.28.17 by
@app/dependabotin codecov/codecov-action#1822- fix: OIDC on forks by
@joseph-sentryin codecov/codecov-action#1823Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3
v5.4.2
... (truncated)
Commits
Updates actions/upload-artifact from 5.0.0 to 6.0.0
Release notes
Sourced from actions/upload-artifact's releases.
v6.0.0
v6 - What's new
[!IMPORTANT] actions/upload-artifact@v6 now runs on Node.js 24 (
runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.Node.js 24
This release updates the runtime to Node.js 24. v5 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.
What's Changed
- Upload Artifact Node 24 support by
@salmanmkcin actions/upload-artifact#719- fix: update
@actions/artifactfor Node.js 24 punycode deprecation by@salmanmkcin actions/upload-artifact#744- prepare release v6.0.0 for Node.js 24 support by
@salmanmkcin actions/upload-artifact#745Full Changelog: actions/upload-artifact@v5.0.0...v6.0.0
Commits
b7c566aMerge pull request #745 from actions/upload-artifact-v6-releasee516bc8docs: correct description of Node.js 24 support in READMEddc45eddocs: update README to correct action name for Node.js 24 support615b319chore: release v6.0.0 for Node.js 24 support017748bMerge pull request #744 from actions/fix-storage-blob38d4c79chore: rebuild dist7d27270chore: add missing license cache files for@actions/core,@actions/io, and mi...5f643d3chore: update license files for@actions/artifact@5.0.1 dependencies1df1684chore: update package-lock.json with@actions/artifact@5.0.1b5b1a91fix: update@actions/artifactto ^5.0.0 for Node.js 24 punycode fix- Additional commits viewable in compare view
Dependabot 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 options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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 conditions