Skip to content

Commit

Permalink
2021-12-12 v. 3.6.9: deleted caching in GitHub Actions pipelines (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
fartem committed Dec 12, 2021
1 parent b7d057f commit edff49d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 30 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,6 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: caches-${{ runner.os }}-${{ hashFiles('**/*.gradle') }}

- uses: actions/cache@v1
with:
path: ~/.gradle/wrapper
key: wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}

- name: Set up JDK 11
uses: actions/setup-java@v1
with:
Expand All @@ -50,16 +40,6 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: caches-${{ runner.os }}-${{ hashFiles('**/*.gradle') }}

- uses: actions/cache@v1
with:
path: ~/.gradle/wrapper
key: wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}

- name: Set up JDK 11
uses: actions/setup-java@v1
with:
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@ jobs:
token: ${{ secrets.ACCESS_TOKEN }}
path: './metadata'

- uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: caches-${{ runner.os }}-${{ hashFiles('**/*.gradle') }}

- uses: actions/cache@v1
with:
path: ~/.gradle/wrapper
key: wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}

- name: Set up JDK 11
uses: actions/setup-java@v1
with:
Expand Down

0 comments on commit edff49d

Please sign in to comment.