-
-
Notifications
You must be signed in to change notification settings - Fork 4
Dev #98
base: main
Are you sure you want to change the base?
Dev #98
Changes from 22 commits
3a91eaf
76a4ce4
6d982d1
92ab360
80a83b0
a7dc760
b38d748
d6e6c72
0d5f483
d82c7d2
6e755f5
916eb1b
a78a490
520f5a6
b852f10
693b162
13e8921
9ecf55d
c753d50
ebd72ab
be2184d
9c5f224
1724630
478dfe3
2640d40
686d371
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -29,7 +29,7 @@ jobs: | |||||
| - uses: actions/setup-node@v4 | ||||||
| with: | ||||||
| node-version: '20' | ||||||
| - uses: pnpm/action-setup@v2.4.0 | ||||||
| - uses: pnpm/action-setup@v3.0.0 | ||||||
| name: Install pnpm | ||||||
| id: pnpm-install | ||||||
| with: | ||||||
|
|
@@ -45,7 +45,7 @@ jobs: | |||||
| run: | | ||||||
| echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||||||
|
|
||||||
| - uses: actions/cache@v3 | ||||||
| - uses: actions/cache@v4 | ||||||
| name: Setup pnpm cache | ||||||
| with: | ||||||
| path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||||||
|
|
@@ -71,7 +71,7 @@ jobs: | |||||
| - uses: actions/setup-node@v4 | ||||||
| with: | ||||||
| node-version: '20' | ||||||
| - uses: pnpm/action-setup@v2.4.0 | ||||||
| - uses: pnpm/action-setup@v3.0.0 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the - version: 7
+ version: 8Committable suggestion
Suggested change
|
||||||
| name: Install pnpm | ||||||
| id: pnpm-install | ||||||
| with: | ||||||
|
|
@@ -87,7 +87,7 @@ jobs: | |||||
| run: | | ||||||
| echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | ||||||
|
||||||
|
|
||||||
| - uses: actions/cache@v3 | ||||||
| - uses: actions/cache@v4 | ||||||
| name: Setup pnpm cache | ||||||
| with: | ||||||
| path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The set-output command is deprecated by GitHub Actions and will be removed. Replace 'echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"' with 'echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT' to use the current recommended approach.