From 7a29c9a52e8616b972826f18a21ffea1bc978c76 Mon Sep 17 00:00:00 2001 From: berfinyuksel Date: Tue, 21 Oct 2025 14:52:19 +0200 Subject: [PATCH] Update: migrate docs workflow to Node LTS (setup-node@v4, node-version: 'lts/*')" --- .github/workflows/docs.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 31eb4e401..8480e20e8 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -28,11 +28,11 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Checkout code" - uses: "actions/checkout@v3" + uses: "actions/checkout@v4" with: ref: ${{ github.event.pull_request.head.sha }} - name: "Checkout Docs Generator" - uses: "actions/checkout@v3" + uses: "actions/checkout@v4" with: repository: "pimcore/docs-generator" ref: "main" @@ -40,9 +40,9 @@ jobs: token: ${{ secrets.DOCS_GENERATOR_ACCESS_TOKEN }} - name: "Install Node" - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 19.x + node-version: 'lts/*' registry-url: 'https://registry.npmjs.org' - name: Prepare Docs