diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 45eb0a9c5c..29488fa818 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -37,10 +37,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Use Node.js 18 + - name: Use Node.js 20 uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Set up QEMU diff --git a/.github/workflows/build-precompiled.yml b/.github/workflows/build-precompiled.yml index c364769dde..8f97384fbd 100644 --- a/.github/workflows/build-precompiled.yml +++ b/.github/workflows/build-precompiled.yml @@ -26,10 +26,10 @@ jobs: - name: Cleanup precompiled run: rm -rf precompiled/* - - name: Use Node.js 18 + - name: Use Node.js 20 uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install dependencies diff --git a/.github/workflows/jest.yml b/.github/workflows/jest.yml index 075e951c63..f302d7536e 100644 --- a/.github/workflows/jest.yml +++ b/.github/workflows/jest.yml @@ -34,10 +34,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Use Node.js 18 + - name: Use Node.js 20 uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install dependencies diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index b94b2dae8f..b69106d1e1 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -19,10 +19,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Use Node.js 18 + - name: Use Node.js 20 uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install dependencies diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index 50ce4365e1..a8282e6934 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -19,7 +19,7 @@ jobs: # Setup .npmrc file to publish to npm - uses: actions/setup-node@v4 with: - node-version: '18.x' + node-version: 20 - run: yarn - run: yarn npm publish @@ -40,7 +40,7 @@ jobs: # Setup .npmrc file to publish to npm - uses: actions/setup-node@v4 with: - node-version: '18.x' + node-version: 20 - run: yarn - run: yarn npm publish diff --git a/.yarn/sdks/prettier/package.json b/.yarn/sdks/prettier/package.json index d2b89e5f34..e6c621dbb5 100644 --- a/.yarn/sdks/prettier/package.json +++ b/.yarn/sdks/prettier/package.json @@ -1,6 +1,6 @@ { "name": "prettier", - "version": "3.1.1-sdk", + "version": "3.2.4-sdk", "main": "./index.cjs", "type": "commonjs", "bin": "./bin/prettier.cjs" diff --git a/package.json b/package.json index ecd61eaf00..a6be352f8a 100644 --- a/package.json +++ b/package.json @@ -22,10 +22,10 @@ "server.crt" ], "targets": [ - "node16-linux-arm64", - "node16-win-arm64", - "node16-linux-x64", - "node16-win-x64" + "node18-linux-arm64", + "node18-win-arm64", + "node18-linux-x64", + "node18-win-x64" ], "outputPath": "dist" },