Skip to content

Commit 93910b5

Browse files
committed
More actions updates
1 parent aa98a18 commit 93910b5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
PYTHON_VERSION: ['3.7', '3.10']
2626
steps:
2727
- name: Checkout branch
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
- name: Install Conda
3030
uses: conda-incubator/setup-miniconda@v3
3131
with:
@@ -71,7 +71,7 @@ jobs:
7171
PYTHON_VERSION: ['3.8', '3.9']
7272
steps:
7373
- name: Checkout branch
74-
uses: actions/checkout@v3
74+
uses: actions/checkout@v4
7575
- name: Install Conda
7676
uses: conda-incubator/setup-miniconda@v3
7777
with:
@@ -113,7 +113,7 @@ jobs:
113113
PYTHON_VERSION: ['3.8', '3.9', '3.10']
114114
steps:
115115
- name: Checkout branch
116-
uses: actions/checkout@v3
116+
uses: actions/checkout@v4
117117
- name: Install Conda
118118
uses: conda-incubator/setup-miniconda@v3
119119
with:
@@ -155,7 +155,7 @@ jobs:
155155
PYTHON_VERSION: ['3.7', '3.8', '3.9', '3.10']
156156
steps:
157157
- name: Checkout branch
158-
uses: actions/checkout@v3
158+
uses: actions/checkout@v4
159159
- name: Install Conda
160160
uses: conda-incubator/setup-miniconda@v3
161161
with:
@@ -188,11 +188,11 @@ jobs:
188188
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
189189
needs: [windows, macos, linux]
190190
steps:
191-
- uses: actions/checkout@v3
192-
- name: Set up Python 3.8
193-
uses: actions/setup-python@v4
191+
- uses: actions/checkout@v4
192+
- name: Set up Python 3.10
193+
uses: actions/setup-python@v5
194194
with:
195-
python-version: 3.8
195+
python-version: 3.10
196196
- name: Install dependencies
197197
run: |
198198
python -m pip install --upgrade pip wheel setuptools
@@ -201,7 +201,7 @@ jobs:
201201
python setup.py sdist bdist_wheel
202202
203203
- name: Publish package
204-
uses: pypa/gh-action-pypi-publish@v1.5.1
204+
uses: pypa/gh-action-pypi-publish@release/v1
205205
with:
206206
user: __token__
207207
password: ${{ secrets.pypi_password }}

0 commit comments

Comments
 (0)