Skip to content

Commit

Permalink
.github/workflows/main.yml: update actions and python
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyusa committed Feb 25, 2024
1 parent 4d327c9 commit 8c83754
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- 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.12'

# Runs a single command using the runners shell
- name: Install python dependencies
run: "python3 -m pip install docutils"
run: "python3 -m pip install -r requirements.txt"

- name: Check spelling
run: "bash scripts/spellcheck.sh check"
Expand All @@ -51,7 +51,7 @@ jobs:
# Install generated document in Pages
- name: Deploy to GitHub Pages
if: success() && github.ref == 'refs/heads/main'
uses: crazy-max/ghaction-github-pages@v3
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: html
Expand Down

0 comments on commit 8c83754

Please sign in to comment.