Skip to content

Commit

Permalink
ci: upgrade actions
Browse files Browse the repository at this point in the history
  • Loading branch information
markokr committed Mar 31, 2024
1 parent c9140d8 commit 1acfbce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4

- name: "Setup Python ${{matrix.pick.PY}}"
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{matrix.pick.PY}}

Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
uses: actions/checkout@v4

- name: "Setup ${{matrix.pick.PYNAME}}"
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{matrix.pick.PY}}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with: {python-version: "3.11"}
- run: python3 -m pip install -r etc/requirements.build.txt --disable-pip-version-check
- run: python3 setup.py sdist
- run: python3 setup.py bdist_wheel
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with: {name: "dist", path: "dist"}

publish:
Expand All @@ -28,13 +28,13 @@ jobs:
needs: [sdist]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with: {python-version: "3.11"}

- run: python3 -m pip install -r etc/requirements.build.txt --disable-pip-version-check

- name: "Get files"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with: {name: "dist", path: "dist"}

- name: "Install pandoc"
Expand Down

0 comments on commit 1acfbce

Please sign in to comment.