chore(ci): bump to higher version

This commit is contained in:
Neko Ayaka
2025-04-02 00:27:59 +08:00
parent 3340a5b12d
commit effe9d947c
+3 -16
View File
@@ -44,15 +44,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js 22.x
- name: Install Node.js 23.x
uses: actions/setup-node@v4
with:
node-version: 22.x
node-version: 23.x
# registry-url required. Learn more at
# https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
registry-url: 'https://registry.npmjs.org'
- uses: pnpm/action-setup@v3
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
@@ -68,19 +68,6 @@ jobs:
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile