Skip to content

Commit

Permalink
Removed date from cache key
Browse files Browse the repository at this point in the history
  • Loading branch information
scharlton2 committed Jun 7, 2024
1 parent 8821f57 commit a24c88c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:
uses: actions/cache/restore@v3
with:
path: ${{ env.ONEAPI_ROOT }}
key: ${{ runner.os }}-${{ inputs.compiler }}-${{ inputs.version }}-${{ steps.get-date.outputs.date }}
key: ${{ runner.os }}-${{ inputs.compiler }}-${{ inputs.version }}

# Use micromamba for lfortran install on mac. Check if micromamba already
# exists, only install it if needed. If we install it, clean it up after.
Expand Down Expand Up @@ -116,7 +116,7 @@ runs:
uses: actions/cache/save@v3
with:
path: ${{ env.ONEAPI_ROOT }}
key: ${{ runner.os }}-${{ inputs.compiler }}-${{ inputs.version }}-${{ steps.get-date.outputs.date }}
key: ${{ runner.os }}-${{ inputs.compiler }}-${{ inputs.version }}
- name: Activate oneAPI
if: runner.os == 'Windows' && contains(inputs.compiler, 'intel')
shell: cmd
Expand Down

0 comments on commit a24c88c

Please sign in to comment.