Skip to content

Commit 2bbd769

Browse files
committed
Update deprecated actions
1 parent 9cb116c commit 2bbd769

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
build:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727

2828
# Install dependencies
2929
- name: Set up Python 3.10
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: "3.10"
3333

@@ -43,7 +43,7 @@ jobs:
4343
4444
- name: Upload artifact
4545
# Automatically uploads an artifact from the './_site' directory by default
46-
uses: actions/upload-pages-artifact@v3
46+
uses: actions/upload-pages-artifact@v4
4747
with:
4848
path: 'docs/build/html'
4949

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ jobs:
3636
--user
3737
- name: Build a binary wheel and a source tarball
3838
run: python3 -m build
39-
- name: Publish distribution 📦 to PyPI
39+
- name: Publish to PyPI
4040
uses: pypa/gh-action-pypi-publish@release/v1

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
# Steps represent a sequence of tasks that will be executed as part of the job
2222
steps:
2323
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
- name: Install Python 3
27-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: '3.10'
3030

0 commit comments

Comments
 (0)