Skip to content

Commit 33ef41a

Browse files
authored
Merge pull request #985 from benjeffery/update-actions-2412
Update GitHub Actions to latest major versions
2 parents 10b3c81 + 62985b2 commit 33ef41a

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

.github/workflows/docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
with:
2424
access_token: ${{ github.token }}
2525

26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v4.2.2
2727
with:
2828
submodules: true
2929

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

.github/workflows/tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
uses: styfle/[email protected]
1515
with:
1616
access_token: ${{ github.token }}
17-
- uses: actions/checkout@v4
18-
- uses: actions/setup-python@v5
17+
- uses: actions/checkout@v4.2.2
18+
- uses: actions/setup-python@v5.3.0
1919
with:
2020
python-version: '3.10'
2121
- name: install clang-format
2222
if: steps.clang_format.outputs.cache-hit != 'true'
2323
run: |
2424
sudo pip install clang-format==6.0.1
2525
sudo ln -s /usr/local/bin/clang-format /usr/local/bin/clang-format-6.0
26-
- uses: pre-commit/[email protected].0
26+
- uses: pre-commit/[email protected].1
2727

2828
test:
2929
name: Python
@@ -43,19 +43,19 @@ jobs:
4343
access_token: ${{ github.token }}
4444

4545
- name: Checkout
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v4.2.2
4747
with:
4848
submodules: true
4949

5050
- name: Cache conda and dependancies
5151
id: cache
52-
uses: actions/cache@v4
52+
uses: actions/cache@v4.2.0
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/setup-miniconda@v3
58+
uses: conda-incubator/setup-miniconda@v3.1.0
5959
if: steps.cache.outputs.cache-hit != 'true'
6060
with:
6161
activate-environment: anaconda-client-env

.github/workflows/wheels.yml

+18-18
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
python: [3.9, "3.10", 3.11, 3.12]
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4.2.2
2222
with:
2323
submodules: true
2424
- name: Set up Python ${{ matrix.python }}
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v5.3.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@v3
38+
uses: actions/upload-artifact@v4.4.3
3939
with:
4040
name: osx-wheel-${{ matrix.python }}
4141
path: dist
@@ -48,7 +48,7 @@ jobs:
4848
wordsize: [64]
4949
steps:
5050
- name: Checkout
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4.2.2
5252
with:
5353
submodules: true
5454
- name: Install deps
@@ -66,7 +66,7 @@ jobs:
6666
set -ex
6767
${PYTHON} -m build --wheel
6868
- name: Upload Wheels
69-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4.4.3
7070
with:
7171
name: win-wheel-${{ matrix.python }}-${{ matrix.wordsize }}
7272
path: dist
@@ -75,12 +75,12 @@ jobs:
7575
runs-on: ubuntu-latest
7676
steps:
7777
- name: Checkout
78-
uses: actions/checkout@v3
78+
uses: actions/checkout@v4.2.2
7979
with:
8080
submodules: true
8181

8282
- name: Set up Python 3.9
83-
uses: actions/setup-python@v4
83+
uses: actions/setup-python@v5.3.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@v3
94+
uses: actions/upload-artifact@v4.4.3
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@v3
105+
uses: actions/upload-artifact@v4.4.3
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@v3
118+
uses: actions/download-artifact@v4.1.8
119119
with:
120120
name: osx-wheel-${{ matrix.python }}
121121
- name: Set up Python ${{ matrix.python }}
122-
uses: actions/setup-python@v4
122+
uses: actions/setup-python@v5.3.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@v3
142+
uses: actions/download-artifact@v4.1.8
143143
with:
144144
name: win-wheel-${{ matrix.python }}-${{ matrix.wordsize }}
145145
- name: Set up Python ${{ matrix.python }}
146-
uses: actions/setup-python@v4
146+
uses: actions/setup-python@v5.3.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@v3
167+
uses: actions/download-artifact@v4.1.8
168168
with:
169169
name: linux-wheels
170170
- name: Set up Python
171-
uses: actions/setup-python@v4
171+
uses: actions/setup-python@v5.3.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@v3
191+
uses: actions/download-artifact@v4.1.8
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/gh-action-pypi-publish@release/v1
198+
uses: pypa/gh-action-pypi-publish@v1.12.3
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/gh-action-pypi-publish@release/v1
203+
uses: pypa/gh-action-pypi-publish@v1.12.3

0 commit comments

Comments
 (0)