From 9a0fce8fcb42f4cebdff4ed47ec8ff3b27f4f9ae Mon Sep 17 00:00:00 2001 From: igorgn <50628426+igorgn@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:16:19 +0200 Subject: [PATCH 1/2] Update GitHub Actions to use specific versions --- .github/workflows/documentation.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 67a938c8dc..fcf6320474 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -14,8 +14,8 @@ jobs: if: github.event_name != 'push' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/setup-node@65d868f8d4d85d7d4abb7de0875cde3fcc8798f5 with: node-version: '16.x' - name: Test Build @@ -28,8 +28,8 @@ jobs: if: github.event_name != 'pull_request' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - uses: actions/setup-node@65d868f8d4d85d7d4abb7de0875cde3fcc8798f5 with: node-version: '16.x' - name: Add key to allow access to repository From 97cc40097d6e01be06124f1bc8f6ada8589a874b Mon Sep 17 00:00:00 2001 From: igorgn <50628426+igorgn@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:19:19 +0200 Subject: [PATCH 2/2] Upgrade Node.js version in documentation workflow Updated Node.js version from 16.x to 22.x in workflow. --- .github/workflows/documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index fcf6320474..c3a61c142f 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 - uses: actions/setup-node@65d868f8d4d85d7d4abb7de0875cde3fcc8798f5 with: - node-version: '16.x' + node-version: '22.x' - name: Test Build run: | cd website/ @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 - uses: actions/setup-node@65d868f8d4d85d7d4abb7de0875cde3fcc8798f5 with: - node-version: '16.x' + node-version: '22.x' - name: Add key to allow access to repository env: SSH_AUTH_SOCK: /tmp/ssh_agent.sock