From 967bf82a03524a22e97111f5274338a292e3b80f Mon Sep 17 00:00:00 2001 From: Balakrishna Avulapati Date: Sat, 27 Dec 2025 08:10:40 +0530 Subject: [PATCH] fix: broken deploy website pipeline The workflow fails due to the following deploy This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions Signed-off-by: Balakrishna Avulapati --- .github/workflows/website-deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/website-deploy.yml b/.github/workflows/website-deploy.yml index a750faf4..87936e62 100644 --- a/.github/workflows/website-deploy.yml +++ b/.github/workflows/website-deploy.yml @@ -1,7 +1,7 @@ name: website on: push: - branches: [ "main" ] + branches: ["main"] workflow_dispatch: permissions: @@ -32,11 +32,11 @@ jobs: -DINCLUDEJS_DOCS:BOOL=ON - run: cmake --build ./build --config Release --target doxygen - name: Setup Pages - uses: actions/configure-pages@v1 + uses: actions/configure-pages@v5 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: ./build/website - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4