Skip to content

Commit 4eb80fb

Browse files
authored
ci: Use GITHUB_OUTPUT envvar instead of set-output command (#1530)
1 parent 330564c commit 4eb80fb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/test-e2e-composable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Get pnpm store directory
3939
id: pnpm-cache
4040
run: |
41-
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
41+
echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT"
4242
4343
- name: Cache pnpm modules
4444
uses: actions/cache@v2

.github/workflows/test-e2e-options.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Get pnpm store directory
3939
id: pnpm-cache
4040
run: |
41-
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
41+
echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT"
4242
4343
- name: Cache pnpm modules
4444
uses: actions/cache@v2

.github/workflows/test-e2e-ssr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Get pnpm store directory
3939
id: pnpm-cache
4040
run: |
41-
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
41+
echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT"
4242
4343
- name: Cache pnpm modules
4444
uses: actions/cache@v2

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Get pnpm store directory
3636
id: pnpm-cache
3737
run: |
38-
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
38+
echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT"
3939
4040
- name: Cache pnpm modules
4141
uses: actions/cache@v2

0 commit comments

Comments
 (0)