Skip to content

Commit 479b057

Browse files
authored
ci: add missing value property to outputs (#15338)
Fixes these schema errors: ![Screenshot 2026-01-23 at 17 38 59](https://github.com/user-attachments/assets/8d11a3e3-94ff-4e56-89ba-14bab4b89aee)
1 parent d95c365 commit 479b057

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/actions/setup/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@ inputs:
1717
description: The cache key override for the pnpm install cache
1818

1919
outputs:
20-
pnpm-store-path:
21-
description: The resolved pnpm store path
2220
pnpm-install-cache-key:
2321
description: The cache key used for pnpm install cache
22+
value: ${{ steps.compute-output.outputs.pnpm-install-cache-key }}
2423

2524
runs:
2625
using: composite
@@ -79,6 +78,7 @@ runs:
7978
8079
- name: Compute Cache Key
8180
shell: bash
81+
id: compute-cache-key
8282
run: |
8383
if [ -n "${{ inputs.pnpm-install-cache-key }}" ]; then
8484
PNPM_INSTALL_CACHE_KEY="${{ inputs.pnpm-install-cache-key }}"
@@ -107,3 +107,4 @@ runs:
107107
- run: |
108108
echo "pnpm-install-cache-key=${{ env.PNPM_INSTALL_CACHE_KEY }}" >> $GITHUB_OUTPUT
109109
shell: bash
110+
id: compute-output

0 commit comments

Comments
 (0)