Skip to content

Commit

Permalink
Bumped actions versions to use Node v20 instead of Node v16
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryAsa authored May 16, 2024
1 parent 387a4ba commit 113e7d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Expand All @@ -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
uses: actions/deploy-pages@v4 # https://github.com/actions/deploy-pages

0 comments on commit 113e7d5

Please sign in to comment.