Grzegorz Cudok

Results 6 comments of Grzegorz Cudok

I have found the issue. When I forced actions/github to use @3.0.5 it's working. So I see the issue with the lasted release. For @3.0.5 build is working fine *...

``` #just the step that is used for create cache ${{inputs.CACHE_KEY_BASE}} contains only base part of the key - name: Cache sub-domain-name uses: actions/cache@v3 with: key: ${{inputs.CACHE_KEY_BASE}}-sub-domain-name path: test-binaries/sub-domain-name ```...

@pdotl I've tried with out that workaround and it still failing for windows and for ubuntu its fine. Just output is like it not hitting cache key but that's odd...

@pgrivachev I just downgraded the version, just try to change from the `actions/cache@v3` to `actions/[email protected]` (previous release) for last release 3.0.6 the cache is just not working :/

@mladedav just try to add this workaround for windows before you are using `actions/cache@v2` , it should be probably working: ``` - if: ${{ runner.os == 'Windows' }} # Workaround...

On my workflows the problem was solved, thanks @pdotl