Skip to content

Commit

Permalink
update actions to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoMVale committed May 12, 2024
1 parent e7bf91e commit b3adbe2
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: "3.10"
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
uses: ts-graphviz/setup-graphviz@v2
- name: Install FORD and other dependencies
run: |
python -m pip install --upgrade pip
pip install ford
pip install ford
- name: Build docs with FORD
run: |
ford ./api-doc-ford.md
ls -l
- name: Setup Pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v1

uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
Expand All @@ -56,4 +55,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit b3adbe2

Please sign in to comment.