Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Fixed string concatenation with format
Browse files Browse the repository at this point in the history
Signed-off-by: Gregory Shimansky <[email protected]>
  • Loading branch information
gshimansky committed Nov 30, 2023
1 parent 7da90f6 commit bf97945
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/initial_setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ runs:
CACHE_NUMBER: 0
with:
path: ${{ env.CONDA }}/envs
key: conda-${{ inputs.conda_env }}-${{ hashFiles('tests/conda-envs/' + inputs.conda_env + '.yaml') }}-${{ steps.get-date.outputs.today }}-${{ env.CACHE_NUMBER }}
key: >-
conda-${{ inputs.conda_env }}-
${{ hashFiles(format('tests/conda-envs/{0}.yaml', inputs.conda_env)) }}-
${{ steps.get-date.outputs.today }}-
${{ env.CACHE_NUMBER }}
- name: Update conda env
if: steps.conda-cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit bf97945

Please sign in to comment.