Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/cache from v2 to v2.1.4 #92

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -38,7 +38,7 @@ jobs:
shell: bash

- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ steps.params.outputs.spark-version }}-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
path: target

- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-test-${{ steps.params.outputs.spark-version }}-${{ hashFiles('**/pom.xml') }}
Expand All @@ -102,7 +102,7 @@ jobs:
run: mvn --batch-mode test

- name: Cache Pip packages
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-test-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
Expand Down Expand Up @@ -167,15 +167,15 @@ jobs:
path: target

- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-integration-${{ matrix.spark-version }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-mvn-integration-

- name: Cache Spark Binaries
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: ~/spark
key: ${{ runner.os }}-spark-binaries-${{ matrix.spark-version }}
Expand Down