We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92bd53c commit 05cdab9Copy full SHA for 05cdab9
.github/actions/setup-orchestrator-cache/action.yml
@@ -12,11 +12,13 @@ runs:
12
- name: Calculate orchestrator cache key
13
id: set-paths
14
shell: bash
15
+ env:
16
+ SQ_VERSION: ${{ inputs.sq-version }}
17
run: |
18
# Get current month for cache rotation
19
CURRENT_MONTH=$(date +"%B")
20
- CACHE_KEY="orchestrator-${{ github.workflow }}-${{ inputs.sq-version }}-${CURRENT_MONTH}"
21
+ CACHE_KEY="orchestrator-${{ github.workflow }}-${SQ_VERSION}-${CURRENT_MONTH}"
22
echo "cache-key=${CACHE_KEY}" >> $GITHUB_OUTPUT
23
24
- name: Setup orchestrator cache
0 commit comments