Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

getCacheEntry failed: Cache service responded with 503

I am trying to check the lint on the gitubaction. my github action steps are as below

  lint:
    name: Lint
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Set up Python
        uses: actions/setup-python@v4
        with:
          python-version-file: '.python-version'
          cache: 'pip'
          cache-dependency-path: 'requirements.txt'

Error screenshot Attached below enter image description here

Could you please help me how to fix this?

like image 228
Divya Shrestha Avatar asked Sep 07 '25 10:09

Divya Shrestha


1 Answers

Seems like the issue is coming from github cache actions. https://github.com/actions/cache/issues/820

like image 128
Harikesh Avatar answered Sep 08 '25 23:09

Harikesh