From bca91c894e593a9f94de3511d6bfb8d28e10d3c1 Mon Sep 17 00:00:00 2001 From: Dale Seo <5466341+DaleSeo@users.noreply.github.com> Date: Wed, 25 Oct 2023 23:32:20 -0400 Subject: [PATCH] docs(static-deploy): bump version of actions/checkout and actions/upload-pages-artifact (#14759) --- docs/guide/static-deploy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/static-deploy.md b/docs/guide/static-deploy.md index 2fea6afabefbf9..bb2f6cfdb6cab8 100644 --- a/docs/guide/static-deploy.md +++ b/docs/guide/static-deploy.md @@ -96,7 +96,7 @@ Now the `preview` command will launch the server at `http://localhost:8080`. runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Node uses: actions/setup-node@v3 with: @@ -109,7 +109,7 @@ Now the `preview` command will launch the server at `http://localhost:8080`. - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v2 with: # Upload dist repository path: './dist'