Skip to content

Commit b10bfc1

Browse files
authored
Replace deprecated command with environment file (#311)
1 parent 9a5cbbd commit b10bfc1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Get pnpm store directory
3030
id: pnpm-cache
3131
run: |
32-
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
32+
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
3333
3434
- uses: actions/cache@v3
3535
name: Setup pnpm cache

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Get pnpm store directory
2828
id: pnpm-cache
2929
run: |
30-
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
30+
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
3131
3232
- uses: actions/cache@v3
3333
name: Setup pnpm cache

0 commit comments

Comments
 (0)