dimas-b commented on code in PR #4097:
URL: https://github.com/apache/polaris/pull/4097#discussion_r3022400022
##########
.github/actions/ci-incr-build-cache-prepare/action.yml:
##########
@@ -85,12 +90,14 @@ runs:
- name: Extract caches
shell: bash
+ env:
+ INPUT_JAVA_VERSION: ${{ inputs.java-version }}
run: |
echo "::group::Gradle build cache / add incremental updates"
mkdir -p ~/.gradle/caches/
if [[ -d ~/downloaded-artifacts/ ]] ; then
- find ~/downloaded-artifacts/ -type f -name "ci-gradle-caches-*-${{
inputs.java-version }}.tar" | while read arch ; do
+ find ~/downloaded-artifacts/ -type f -name
"ci-gradle-caches-*-${INPUT_JAVA_VERSION}.tar" | while read arch ; do
Review Comment:
why not run `INPUT_JAVA_VERSION` through `tr` here as we do on line 64?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]