From ea6fcbdd9da7c245f8aef87114b37033dbec9430 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Thu, 28 May 2020 20:24:34 +0200 Subject: [PATCH] Bump actions/cache to v2 (#2746) --- .github/workflows/deploy-snapshot.yaml | 4 ++-- .github/workflows/pre-merge.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-snapshot.yaml b/.github/workflows/deploy-snapshot.yaml index ac3e60210..ea6d313e3 100644 --- a/.github/workflows/deploy-snapshot.yaml +++ b/.github/workflows/deploy-snapshot.yaml @@ -14,12 +14,12 @@ jobs: uses: actions/checkout@v2 - name: Cache Gradle Caches - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.gradle/caches/ key: cache-gradle-deploy-snapshot - name: Cache Gradle Wrapper - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.gradle/wrapper/ key: cache-wrapper-deploy-snapshot diff --git a/.github/workflows/pre-merge.yaml b/.github/workflows/pre-merge.yaml index 507439e98..7a87f96b3 100644 --- a/.github/workflows/pre-merge.yaml +++ b/.github/workflows/pre-merge.yaml @@ -35,12 +35,12 @@ jobs: - name: Cache Gradle Caches - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.gradle/caches/ key: cache-clean-gradle-${{ matrix.os }}-${{ matrix.jdk }} - name: Cache Gradle Wrapper - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.gradle/wrapper/ key: cache-clean-wrapper-${{ matrix.os }}-${{ matrix.jdk }}