From 113e7d5310d592f7dc172664715bfdd8156ab7db Mon Sep 17 00:00:00 2001 From: Henry Asa Date: Thu, 16 May 2024 18:17:30 -0400 Subject: [PATCH] Bumped `actions` versions to use Node v20 instead of Node v16 See the following GitHub Blog Post for more details: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/build-gh-pages.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-gh-pages.yml b/.github/workflows/build-gh-pages.yml index 94e7c2e..f118548 100644 --- a/.github/workflows/build-gh-pages.yml +++ b/.github/workflows/build-gh-pages.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # https://github.com/actions/checkout - name: Install Python Dependencies run: | python -m pip install --upgrade pip @@ -37,7 +37,7 @@ jobs: run: | sphinx-build -b html docs/source/ docs/build/html - name: 'Save Documentation Artifact' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact with: name: package_docs path: './docs/build/html' @@ -52,17 +52,17 @@ jobs: needs: build steps: - name: Download Sphinx Documentation - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 # https://github.com/actions/download-artifact with: name: package_docs path: docs - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 # https://github.com/actions/configure-pages - name: Upload artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 # https://github.com/actions/upload-pages-artifact with: # Upload entire repository path: './docs' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 \ No newline at end of file + uses: actions/deploy-pages@v4 # https://github.com/actions/deploy-pages