Skip to content

Commit eb60ee5

Browse files
committed
Update actions versions
1 parent 7520150 commit eb60ee5

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
submodules: true
2929

30-
- uses: actions/setup-python@v5.3.0
30+
- uses: actions/setup-python@v5.4.0
3131
with:
3232
python-version: "3.11"
3333
cache: "pip"

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
access_token: ${{ github.token }}
1717
- uses: actions/[email protected]
18-
- uses: actions/setup-python@v5.3.0
18+
- uses: actions/setup-python@v5.4.0
1919
with:
2020
python-version: '3.10'
2121
- name: install clang-format
@@ -49,13 +49,13 @@ jobs:
4949

5050
- name: Cache conda and dependancies
5151
id: cache
52-
uses: actions/[email protected].0
52+
uses: actions/[email protected].2
5353
with:
5454
path: ${{ env.CONDA }}/envs
5555
key: ${{ runner.os }}-${{ runner.arch }}-${{ matrix.python}}-conda-v5-${{ hashFiles('requirements/CI-tests-conda/requirements.txt')}}
5656

5757
- name: Install Miniconda with Mamba
58-
uses: conda-incubator/[email protected].0
58+
uses: conda-incubator/[email protected].1
5959
if: steps.cache.outputs.cache-hit != 'true'
6060
with:
6161
activate-environment: anaconda-client-env

.github/workflows/wheels.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
submodules: true
2424
- name: Set up Python ${{ matrix.python }}
25-
uses: actions/setup-python@v5.3.0
25+
uses: actions/setup-python@v5.4.0
2626
with:
2727
python-version: ${{ matrix.python }}
2828
- name: Install deps
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
delocate-wheel -v dist/*.whl
3737
- name: Upload Wheels
38-
uses: actions/upload-artifact@v4.4.3
38+
uses: actions/upload-artifact@v4.6.1
3939
with:
4040
name: osx-wheel-${{ matrix.python }}
4141
path: dist
@@ -66,7 +66,7 @@ jobs:
6666
set -ex
6767
${PYTHON} -m build --wheel
6868
- name: Upload Wheels
69-
uses: actions/upload-artifact@v4.4.3
69+
uses: actions/upload-artifact@v4.6.1
7070
with:
7171
name: win-wheel-${{ matrix.python }}-${{ matrix.wordsize }}
7272
path: dist
@@ -80,7 +80,7 @@ jobs:
8080
submodules: true
8181

8282
- name: Set up Python 3.9
83-
uses: actions/setup-python@v5.3.0
83+
uses: actions/setup-python@v5.4.0
8484
with:
8585
python-version: 3.9
8686

@@ -91,7 +91,7 @@ jobs:
9191
python -m build --sdist
9292
9393
- name: Upload sdist
94-
uses: actions/upload-artifact@v4.4.3
94+
uses: actions/upload-artifact@v4.6.1
9595
with:
9696
name: sdist
9797
path: dist
@@ -102,7 +102,7 @@ jobs:
102102
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2014_x86_64 bash .github/workflows/docker/buildwheel.sh
103103
104104
- name: Upload Wheels
105-
uses: actions/upload-artifact@v4.4.3
105+
uses: actions/upload-artifact@v4.6.1
106106
with:
107107
name: linux-wheels
108108
path: dist/wheelhouse
@@ -115,11 +115,11 @@ jobs:
115115
python: [3.9, "3.10", 3.11, 3.12]
116116
steps:
117117
- name: Download wheels
118-
uses: actions/download-artifact@v4.1.8
118+
uses: actions/download-artifact@v4.2.0
119119
with:
120120
name: osx-wheel-${{ matrix.python }}
121121
- name: Set up Python ${{ matrix.python }}
122-
uses: actions/setup-python@v5.3.0
122+
uses: actions/setup-python@v5.4.0
123123
with:
124124
python-version: ${{ matrix.python }}
125125
- name: Install wheel and test
@@ -139,11 +139,11 @@ jobs:
139139
wordsize: [64]
140140
steps:
141141
- name: Download wheels
142-
uses: actions/download-artifact@v4.1.8
142+
uses: actions/download-artifact@v4.2.0
143143
with:
144144
name: win-wheel-${{ matrix.python }}-${{ matrix.wordsize }}
145145
- name: Set up Python ${{ matrix.python }}
146-
uses: actions/setup-python@v5.3.0
146+
uses: actions/setup-python@v5.4.0
147147
with:
148148
python-version: ${{ matrix.python }}
149149
- name: Install wheel and test
@@ -164,11 +164,11 @@ jobs:
164164
python: [3.9, "3.10", 3.11, 3.12]
165165
steps:
166166
- name: Download wheels
167-
uses: actions/download-artifact@v4.1.8
167+
uses: actions/download-artifact@v4.2.0
168168
with:
169169
name: linux-wheels
170170
- name: Set up Python
171-
uses: actions/setup-python@v5.3.0
171+
uses: actions/setup-python@v5.4.0
172172
with:
173173
python-version: ${{ matrix.python }}
174174
- name: Install wheel and test
@@ -188,16 +188,16 @@ jobs:
188188
id-token: write
189189
steps:
190190
- name: Download all
191-
uses: actions/download-artifact@v4.1.8
191+
uses: actions/download-artifact@v4.2.0
192192
- name: Move to dist
193193
run: |
194194
mkdir dist
195195
cp */*.{whl,gz} dist/.
196196
- name: Publish distribution to Test PyPI
197197
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
198-
uses: pypa/[email protected].3
198+
uses: pypa/[email protected].4
199199
with:
200200
repository_url: https://test.pypi.org/legacy/
201201
- name: Publish distribution to PRODUCTION PyPI
202202
if: github.event_name == 'release'
203-
uses: pypa/[email protected].3
203+
uses: pypa/[email protected].4

0 commit comments

Comments
 (0)