Skip to content

Commit b071d12

Browse files
committed
Update CI
1 parent e3489cc commit b071d12

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
echo "EOF" >> $GITHUB_OUTPUT
3737
- name: Create the release
3838
if: steps.changelog.outputs.changelog_content != ''
39-
uses: softprops/action-gh-release@v1
39+
uses: softprops/action-gh-release@v2
4040
with:
4141
name: ${{ github.ref_name }}
4242
body: '${{ steps.changelog.outputs.changelog_content }}'

.github/workflows/test.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
- name: Checkout the repository
1515
uses: actions/checkout@v4
1616
- name: Install pnpm
17-
uses: pnpm/action-setup@v2
17+
uses: pnpm/action-setup@v4
1818
with:
1919
version: 9
2020
- name: Install Node.js
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
2222
with:
2323
node-version: 22
2424
cache: pnpm
2525
- name: Install dependencies
26-
run: pnpm install --frozen-lockfile
26+
run: pnpm install
2727
- name: Run tests
2828
run: pnpm test
2929
short:
@@ -38,15 +38,15 @@ jobs:
3838
- name: Checkout the repository
3939
uses: actions/checkout@v4
4040
- name: Install pnpm
41-
uses: pnpm/action-setup@v2
41+
uses: pnpm/action-setup@v4
4242
with:
4343
version: 9
4444
- name: Install Node.js ${{ matrix.node-version }}
45-
uses: actions/setup-node@v3
45+
uses: actions/setup-node@v4
4646
with:
4747
node-version: ${{ matrix.node-version }}
4848
cache: pnpm
4949
- name: Install dependencies
50-
run: pnpm install --frozen-lockfile
50+
run: pnpm install
5151
- name: Run unit tests
5252
run: ./node_modules/.bin/vitest --run

0 commit comments

Comments
 (0)