diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index d3d7e60c2fc01..f2b42dc9c0565 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -25,34 +25,6 @@ jobs: - name: Check images exist run: ./tools/bin/check_images_exist.sh - - name: Pip Caching - uses: actions/cache@v2 - with: - path: | - ~/.cache/pip - key: ${{ secrets.CACHE_VERSION }}-pip-${{ runner.os }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{ secrets.CACHE_VERSION }}-pip-${{ runner.os }}- - - - name: Npm Caching - uses: actions/cache@v2 - with: - path: | - ~/.npm - key: ${{ secrets.CACHE_VERSION }}-npm-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ secrets.CACHE_VERSION }}-npm-${{ runner.os }}- - - # this intentionally does not use restore-keys so we don't mess with gradle caching - - name: Gradle and Python Caching - uses: actions/cache@v2 - with: - path: | - ~/.gradle/caches - ~/.gradle/wrapper - **/.venv - key: ${{ secrets.CACHE_VERSION }}-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }} - - uses: actions/setup-java@v1 with: java-version: '14'