File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 4343 echo "storePassword=$KEYSTORE_STORE_PASSWORD" >> keystore.properties
4444 echo "keyPassword=$KEYSTORE_KEY_PASSWORD" >> keystore.properties
4545
46+ - name : Cache Gradle
47+ uses : actions/cache@v4
48+ with :
49+ path : ~/.gradle/caches/
50+ key : cache-clean-gradle-${{ matrix.os }}-${{ matrix.jdk }}
51+
52+ - name : Cache Gradle Wrapper
53+ uses : actions/cache@v4
54+ with :
55+ path : ~/.gradle/wrapper/
56+ key : cache-clean-wrapper-${{ matrix.os }}-${{ matrix.jdk }}
57+
4658 - name : Grant execute permission for gradlew
4759 run : chmod +x gradlew
4860
Original file line number Diff line number Diff line change 2626 ruby-version : ' 3.3'
2727
2828 - name : Cache Ruby - Bundler
29- uses : actions/cache@v2
29+ uses : actions/cache@v4
3030 with :
3131 path : vendor/bundle
3232 key : ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
@@ -41,13 +41,13 @@ jobs:
4141 cache : gradle
4242
4343 - name : Cache Gradle
44- uses : actions/cache@v1
44+ uses : actions/cache@v4
4545 with :
4646 path : ~/.gradle/caches/
4747 key : cache-clean-gradle-${{ matrix.os }}-${{ matrix.jdk }}
4848
4949 - name : Cache Gradle Wrapper
50- uses : actions/cache@v1
50+ uses : actions/cache@v4
5151 with :
5252 path : ~/.gradle/wrapper/
5353 key : cache-clean-wrapper-${{ matrix.os }}-${{ matrix.jdk }}
You can’t perform that action at this time.
0 commit comments