Small gradle-build-action fixes (#6266)

This commit is contained in:
Trask Stalnaker 2022-07-05 13:06:35 -07:00 committed by GitHub
parent afee828846
commit a141a21b01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ jobs:
gradle-plugins:
uses: ./.github/workflows/reusable-gradle-plugins.yml
with:
no-build-cache: true
cache-read-only: true
examples:
uses: ./.github/workflows/reusable-examples.yml

View File

@ -59,7 +59,7 @@ jobs:
uses: gradle/gradle-build-action@v2
with:
# only push cache for one matrix option per OS since github action cache space is limited
cache-read-only: ${{ inputs.cache-read-only || matrix.smoke-test-suite != 'tomcat' }}
cache-read-only: ${{ matrix.smoke-test-suite != 'tomcat' }}
- name: Build Linux docker images
if: matrix.os != 'windows-2019'