Skip to content

Commit 425a71d

Browse files
committed
Update actions versions
1 parent 7c3d10a commit 425a71d

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/[email protected]
2121

22-
- uses: actions/setup-python@v5.3.0
22+
- uses: actions/setup-python@v5.4.0
2323
with:
2424
python-version: "3.10"
2525
cache: 'pip'

.github/workflows/tests.yml

Lines changed: 2 additions & 2 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
- uses: pre-commit/[email protected]
2020

2121
test:
@@ -40,7 +40,7 @@ jobs:
4040
submodules: true
4141

4242
- name: Install Conda
43-
uses: conda-incubator/[email protected].0
43+
uses: conda-incubator/[email protected].1
4444
with:
4545
activate-environment: anaconda-client-env
4646
python-version: ${{ matrix.python }}

.github/workflows/wheels.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
submodules: true
2121

2222
- name: Set up Python 3.10
23-
uses: actions/setup-python@v5.3.0
23+
uses: actions/setup-python@v5.4.0
2424
with:
2525
python-version: "3.10"
2626

@@ -31,7 +31,7 @@ jobs:
3131
python -m build --sdist
3232
3333
- name: Upload sdist
34-
uses: actions/upload-artifact@v4.4.3
34+
uses: actions/upload-artifact@v4.6.1
3535
with:
3636
name: sdist
3737
path: dist
@@ -42,7 +42,7 @@ jobs:
4242
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2014_x86_64 bash .github/workflows/docker/buildwheel.sh
4343
4444
- name: Upload Wheels
45-
uses: actions/upload-artifact@v4.4.3
45+
uses: actions/upload-artifact@v4.6.1
4646
with:
4747
name: wheels
4848
path: dist
@@ -55,11 +55,11 @@ jobs:
5555
python: [3.9, "3.10", 3.11, 3.12]
5656
steps:
5757
- name: Download wheels
58-
uses: actions/download-artifact@v4.1.8
58+
uses: actions/download-artifact@v4.2.0
5959
with:
6060
name: wheels
6161
- name: Set up Python ${{ matrix.python }}
62-
uses: actions/setup-python@v5.3.0
62+
uses: actions/setup-python@v5.4.0
6363
with:
6464
python-version: ${{ matrix.python }}
6565
- name: Install wheel and test
@@ -78,11 +78,11 @@ jobs:
7878
wordsize: [64]
7979
steps:
8080
- name: Download wheels
81-
uses: actions/download-artifact@v4.1.8
81+
uses: actions/download-artifact@v4.2.0
8282
with:
8383
name: wheels
8484
- name: Set up Python ${{ matrix.python }}
85-
uses: actions/setup-python@v5.3.0
85+
uses: actions/setup-python@v5.4.0
8686
with:
8787
python-version: ${{ matrix.python }}
8888
- name: Install wheel and test
@@ -101,11 +101,11 @@ jobs:
101101
python: [3.9, "3.10", 3.11, 3.12]
102102
steps:
103103
- name: Download wheels
104-
uses: actions/download-artifact@v4.1.8
104+
uses: actions/download-artifact@v4.2.0
105105
with:
106106
name: wheels
107107
- name: Set up Python
108-
uses: actions/setup-python@v5.3.0
108+
uses: actions/setup-python@v5.4.0
109109
with:
110110
python-version: ${{ matrix.python }}
111111
- name: Install wheel and test
@@ -124,16 +124,16 @@ jobs:
124124
id-token: write
125125
steps:
126126
- name: Download all
127-
uses: actions/download-artifact@v4.1.8
127+
uses: actions/download-artifact@v4.2.0
128128
- name: Move to dist
129129
run: |
130130
mkdir dist
131131
cp */*.{whl,gz} dist/.
132132
- name: Publish distribution to Test PyPI
133133
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
134-
uses: pypa/[email protected].3
134+
uses: pypa/[email protected].4
135135
with:
136136
repository_url: https://test.pypi.org/legacy/
137137
- name: Publish distribution to PRODUCTION PyPI
138138
if: github.event_name == 'release'
139-
uses: pypa/[email protected].3
139+
uses: pypa/[email protected].4

0 commit comments

Comments
 (0)