From 60b345f1b618412b243b136d5ad4db71fa271e3d Mon Sep 17 00:00:00 2001 From: jaekwon Date: Thu, 6 Mar 2025 14:05:42 -0800 Subject: [PATCH] update docs-deployment.yml --- .github/workflows/docs-deployment.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs-deployment.yml b/.github/workflows/docs-deployment.yml index 082484dd5..2d822f933 100644 --- a/.github/workflows/docs-deployment.yml +++ b/.github/workflows/docs-deployment.yml @@ -28,7 +28,7 @@ jobs: - name: Install generator dependencies run: | apk add --no-cache make bash git npm - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # We need to fetch full history so the backport branches for previous # versions will be available for the build. @@ -37,7 +37,7 @@ jobs: run: | git config --global --add safe.directory "$PWD" make build-docs - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: build-output path: ~/output/ @@ -49,8 +49,8 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 + - uses: actions/checkout@v4 + - uses: actions/download-artifact@v4 with: name: build-output path: ~/output