Below you will find pages that utilize the taxonomy term “eifinger”
May 13, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v3.0.1.
This action is used across all versions by 146 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes In some cases the cache backend reported a mismatched cache key even though the cache was successfully restored. This is ignored now and a successfully restored cache will set the output cache-hit=true
🐛 Bug fixes Set cache-hit to true if any cache key matched @eifinger (#244) 📚 Documentation docs: Change “@v2” to “@v3” @eifinger (#242) ⬆️ Dependency updates chore(deps-dev): bump eslint and octokit-rest @dependabot (#236) chore(deps-dev): bump @types/node from 20.
May 10, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v3.0.0.
This action is used across all versions by 142 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Faster default version From this release on by default this action installs the rye version defined as default in action.yml. This gets automatically updated in a new release of this action when a new version of rye is released. If you don’t want to wait for a new release of this action you can use use version: latest.
April 25, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v2.6.0.
This action is used across all versions by 127 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes add known checksums for 0.33.0
🚀 Enhancements chore: add checksums for rye 0.33.0 @github-actions (#230)
April 9, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v2.5.2.
This action is used across all versions by 110 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes The previous implementation never restored the backed up settings after the run.
🐛 Bug fixes Fix restoring rye global settings @eifinger (#225)
March 20, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v2.4.0.
This action is used across all versions by 88 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes 🚀 Enhancements chore: add known checksums for 0.30.0 @github-actions (#210) ⬆️ Dependency updates chore(deps): bump peter-evans/create-pull-request from 6.0.1 to 6.0.2 @dependabot (#205) chore(deps-dev): bump @types/node from 20.11.24 to 20.11.25 @dependabot (#199) chore(deps-dev): bump typescript from 5.3.3 to 5.4.2 @dependabot (#200)
March 5, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v2.1.1.
This action is used across all versions by 76 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes Install rye into a stable path and keep it there. Backup user specific settings present before the run on self hosted runners. Restore them after the run. This way runs will not interfere with each other.
🐛 Bug fixes Do not copy around RYE_HOME @eifinger (#198)
March 4, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v2.1.0.
This action is used across all versions by 76 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes The changes of this version introduce a bit of internal complexity but brings the benefit that the rate limit will be reached less often when using latest (which is the default) as the rye version.
🚀 Enhancements Do not get all available versions when using latest @eifinger (#197) 📚 Documentation Add v2 to docs and RYE_HOME explaination @eifinger (#195)
March 4, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v2.0.0.
This action is used across all versions by 75 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes RYE_HOME (.rye) is now located in the parent of the repository root. The previous location in the repository root confused tools like rye fmt
🚨 Breaking changes The cache will always be saved, even if the workflow failed @eifinger (#194) 🐛 Bug fixes Move RYE_HOME from workspace home to runner home @eifinger (#194)
March 2, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.17.0.
This action is used across all versions by 74 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes When using the cache this release will speed up runs on hosted runners because the .rye directory is now also cached.
The OS version was removed as an ingredient for constructing the cache key. This especially fixes issues with macos14 where runners alternated between version 14.
March 1, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.16.2.
This action is used across all versions by 74 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes This will invalidate all caches because v1.16.1 does not work with old caches but fails with hard to understand errors.
🐛 Bug fixes invalidate broken cache of v1.16.1 @eifinger (#190)
March 1, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.16.1.
This action is used across all versions by 74 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes If rye was found in the tools cache of hosted runners RYE_HOME was not set. That led to the creation of the .rye folder in the user home.
🐛 Bug fixes Always set RYE_HOME to cached path @eifinger (#188) ⬆️ Dependency updates chore(deps): bump peter-evans/create-pull-request from 6.
February 26, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.16.0.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes 🚀 Enhancements Add known checksums for rye 0.27.0 @github-actions (#184) 📚 Documentation change org to astral-sh @eifinger (#182) ⬆️ Dependency updates chore(deps-dev): bump eslint from 8.56.0 to 8.57.0 @dependabot (#183) chore(deps-dev): bump @types/node from 20.11.19 to 20.11.20 @dependabot (#178)
February 24, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.15.0.
This action is used across all versions by 68 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes To avoid hitting the error API rate limit exceeded you can supply a GitHub token with the github-token input.
- name: Install rye and supply a GitHub token uses: eifinger/setup-rye@v1 with: github-token: ${{ secrets.GITHUB_TOKEN }} 🚀 Enhancements Add input github-token @eifinger (#181)
February 24, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.14.0.
This action is used across all versions by 67 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes 🚀 Enhancements chore: add checksums for 0.26.0 @github-actions (#180) 📚 Documentation Include link to example workflow in README @eifinger (#179) ⬆️ Dependency updates chore(deps-dev): bump @types/node from 20.11.17 to 20.11.19 @dependabot (#167) chore(deps-dev): bump eslint-plugin-jest from 27.6.3 to 27.9.0 @dependabot (#174)
February 20, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.13.0.
This action is used across all versions by 64 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes Use pagination to retrieve checksums @eifinger (#168) 🚀 Enhancements Use –no-modify-path @eifinger (#170) Rye versions 0.21.0-0.24.0 automatically changed your .profile with a wrong path to rye. This is now skipped. chore: Add known checksums for rye 0.25.0 @github-actions (#176) Add macOS support @eifinger (#175) Clarify cache not found message @eifinger (#172) Suppress rye install log output @eifinger (#171) chore: Add known checksums for rye 0.
February 15, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.12.0.
This action is used across all versions by 58 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes ci: Build new dist after updating checksums @eifinger (#161) ci: Automatically update checksums @eifinger (#159) 🐛 Bug fixes remove leading “-” on empty cache prefix @eifinger (#154) remove redundant cachePath separator @eifinger (#152) 🚀 Enhancements chore: update checksums @github-actions (#162) ⬆️ Dependency updates chore(deps): bump @actions/cache from 3.
February 8, 2024
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.11.0.
This action is used across all versions by 55 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes If you want to save the cache to a local path you can specify the path with the cache-local-storage-path input. This can be useful if you are on a self hosted runner and want to save time and network traffic.
December 18, 2023
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.7.0.
This action is used across all versions by 27 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes 🚀 Enhancements add known checksums for rye 0.16.0 @eifinger (#117)
December 9, 2023
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.6.0.
This action is used across all versions by 25 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes If your rye project is not at the root of the repository you can specify the working directory relative to the repository root. This is useful for monorepos.
If you do not use the caching feature working-directory will have no effect.
October 28, 2023
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.5.0.
This action is used across all versions by 19 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes 🚀 Enhancements do not check releases for known versions @eifinger (#95) add known checksums for rye 0.15.2 @eifinger (#79) ⬆️ Dependency updates chore(deps-dev): bump eslint from 8.50.0 to 8.52.0 @dependabot (#90) chore(deps-dev): bump eslint-plugin-prettier from 5.0.0 to 5.0.1 @dependabot (#83) chore(deps): bump release-drafter/release-drafter from 5.
October 4, 2023
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.4.0.
This publisher is shown as erified by GitHub. This action is used across all versions by 13 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes 🚀 Enhancements add known checksums for rye 0.15.0/0.15.1 @eifinger (#78)
October 2, 2023
Python Setup Rye
Version updated for eifinger/setup-rye to version v1.3.0.
This publisher is shown as erified by GitHub. This action is used across all versions by 12 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changes 🚀 Enhancements add known checksums for rye 0.14.0 @eifinger (#74)