This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 179d135fe7f Fix Node.js 20 deprecation warning in GitHub Actions
179d135fe7f is described below

commit 179d135fe7f61efb3a877020a968276fa63ec4b3
Author: Wu Sheng <[email protected]>
AuthorDate: Thu Mar 26 08:36:22 2026 +0800

    Fix Node.js 20 deprecation warning in GitHub Actions
    
    Upgrade actions/checkout from v4 to v6 and set
    FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true for peaceiris/actions-gh-pages.
---
 .github/workflows/deploy.yaml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml
index 75f561ea570..13e47b9945b 100644
--- a/.github/workflows/deploy.yaml
+++ b/.github/workflows/deploy.yaml
@@ -29,9 +29,11 @@ jobs:
     runs-on: ubuntu-latest
     permissions:
       contents: write
+    env:
+      FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
 
       - name: Install
         run: |

Reply via email to