From dd6824fe469d9698ae0a185a2a7d227aa5ddc780 Mon Sep 17 00:00:00 2001 From: Lisa Glover Date: Wed, 11 Sep 2024 18:03:16 -0700 Subject: [PATCH] Update deploy-pages-static.yml Update .NET version and action versions --- .github/workflows/deploy-pages-static.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-pages-static.yml b/.github/workflows/deploy-pages-static.yml index 79bcd5dca..c67e62ac5 100644 --- a/.github/workflows/deploy-pages-static.yml +++ b/.github/workflows/deploy-pages-static.yml @@ -29,24 +29,24 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Publish the docs to docs/_site - name: Dotnet Setup - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 7.x + dotnet-version: 8.x - run: dotnet tool update -g docfx - run: docfx documentation/docfx.json # Deploy the generated docs to GitHub Pages - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Upload artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 with: # Upload static files path: 'documentation/_site' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4