diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index c7b1722f..2bd48b6e 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -20,6 +20,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '22' + - name: Install dependencies run: yarn install diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml index ea9480f3..c4d6d472 100644 --- a/.github/workflows/automerge.yml +++ b/.github/workflows/automerge.yml @@ -20,14 +20,14 @@ jobs: uses: juliangruber/find-pull-request-action@v1 with: branch: ${{ github.event.workflow_run.head_branch }} - + - name: Checkouting code uses: actions/checkout@v4 with: ref: ${{ github.event.workflow_run.head_branch }} - + - name: Merge pull request env: PR_URL: ${{ steps.find_pr.outputs.url }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: gh pr merge --merge diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1cf948f8..4ee4553b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,6 +25,11 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '22' + - name: Install Dependencies run: yarn install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c392c4e2..11217bbb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,6 +16,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '22' + - name: Install dependencies run: yarn install diff --git a/package.json b/package.json index a62fcafa..14d67938 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "vite-plugin-sitemap": "^0.5.3" }, "engines": { - "node": "^20 || ^18 || ^22", + "node": "^22 || ^23", "npm": ">= 6.13.4", "yarn": ">= 1.21.1" }