mirror of https://github.com/usbharu/Hideout.git
chore: GitHub Actionの改善
This commit is contained in:
parent
88a9919ff7
commit
9ebcedd093
|
@ -22,11 +22,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- uses: actions/cache@2
|
- name: Cache
|
||||||
|
uses: actions/cache@v3.3.2
|
||||||
with:
|
with:
|
||||||
path: ~/.gradle/wrapper
|
path: ~/.gradle/wrapper
|
||||||
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
|
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
|
||||||
- uses: actions/cache@2
|
- name: Cache
|
||||||
|
uses: actions/cache@v3.3.2
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.gradle/caches/jars-*
|
~/.gradle/caches/jars-*
|
||||||
|
@ -34,7 +36,8 @@ jobs:
|
||||||
~/.gradle/caches/modules-*
|
~/.gradle/caches/modules-*
|
||||||
key: gradle-dependencies-${{ steps.cache-key.outputs.week }}-${{ hashFiles('**/*.gradle.kts') }}
|
key: gradle-dependencies-${{ steps.cache-key.outputs.week }}-${{ hashFiles('**/*.gradle.kts') }}
|
||||||
restore-keys: gradle-dependencies-${{ steps.cache-key.outputs.week }}-
|
restore-keys: gradle-dependencies-${{ steps.cache-key.outputs.week }}-
|
||||||
- uses: actions/cache@v2
|
- name: Cache
|
||||||
|
uses: actions/cache@v3.3.2
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.gradle/caches/build-cache-*
|
~/.gradle/caches/build-cache-*
|
||||||
|
|
Loading…
Reference in New Issue