my1e5
my1e5
Thanks for your help. Yes, if I set a specific version of rye it is able to find the cached tool in `/opt/hostedtoolcache`. But it's only able to find the...
`setup-rye@v3` has made a big improvement. Now using this minimal config everything works nicely out the box. ```yaml - uses: eifinger/setup-rye@v3 id: setup-rye with: enable-cache: true ``` The `eifinger/setup-rye@v3` step...
Using ```yaml jobs: checks: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: eifinger/setup-rye@v3 id: setup-rye with: enable-cache: true - name: Install dependencies if: steps.setup-rye.outputs.cache-hit != 'true' run: | rye sync...
I'm also having this issue.