Ubuntu – How to nest "variable" in GitHub Actions function call?
Observe the following, noting that inputs.root-path is set to env. - name: DEBUG run: | set -x ls -l repo/${{ inputs.root-path }}/package-lock.json echo "HASH: ${{ hashFiles('repo/${{ inputs.root-path }}/package-lock.json') }}" echo "HASH: ${{ hashFiles('repo/env/package-lock.json') }}" Output when run via GHA ubuntu-22.04…