diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1b7bc9..ee75de7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: echo "EOF" >> $GITHUB_OUTPUT - name: Create the release if: steps.changelog.outputs.changelog_content != '' - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: name: ${{ github.ref_name }} body: '${{ steps.changelog.outputs.changelog_content }}' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a21dbd8..119a8d4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,13 +14,13 @@ jobs: - name: Checkout the repository uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 with: version: 9 - name: Install Node.js uses: actions/setup-node@v4 with: - node-version: 21 + node-version: 22 cache: pnpm - name: Install dependencies run: pnpm install --ignore-scripts @@ -38,7 +38,7 @@ jobs: - name: Checkout the repository uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 with: version: 9 - name: Install Node.js ${{ matrix.node-version }}