Skip to content

Commit

Permalink
update github actions to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtepkeev committed Mar 2, 2024
1 parent 625d038 commit 99aced2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Build docs
run: |
cd docs
sphinx-build -b html -n -W --keep-going -j auto . _build
- name: Upload docs
uses: easingthemes/ssh-deploy@v4
uses: easingthemes/ssh-deploy@v5
env:
SSH_PRIVATE_KEY: ${{ secrets.DOCS_KEY }}
ARGS: '-rzvc'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.7', 'pypy3.8', 'pypy3.9', 'pypy3.10']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand Down

0 comments on commit 99aced2

Please sign in to comment.