Skip to content

Commit

Permalink
Bump GitHub Actions (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio authored Sep 18, 2024
1 parent fdc1c7b commit 95c8913
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Install dependencies
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.x

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/*.md') }}
Expand All @@ -36,7 +36,7 @@ jobs:
jupyter-book build .
# Upload artifact
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: html_docs
path: ./_build/html
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Install dependencies
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.x

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/*.md') }}
Expand Down

0 comments on commit 95c8913

Please sign in to comment.