@@ -15,12 +15,12 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Checkout
18
- uses : actions/checkout@v4
18
+ uses : actions/checkout@v4.2.2
19
19
with :
20
20
submodules : true
21
21
22
22
- name : Set up Python 3.10
23
- uses : actions/setup-python@v4
23
+ uses : actions/setup-python@v5.3.0
24
24
with :
25
25
python-version : " 3.10"
26
26
31
31
python -m build
32
32
33
33
- name : Upload
34
- uses : actions/upload-artifact@v4
34
+ uses : actions/upload-artifact@v4.4.3
35
35
with :
36
36
name : sdist-wheel
37
37
path : dist
@@ -45,11 +45,11 @@ jobs:
45
45
python : [3.8, 3.8, 3.9, "3.10", 3.11]
46
46
steps :
47
47
- name : Download wheels
48
- uses : actions/download-artifact@v4
48
+ uses : actions/download-artifact@v4.1.8
49
49
with :
50
50
name : sdist-wheel
51
51
- name : Set up Python ${{ matrix.python }}
52
- uses : actions/setup-python@v4
52
+ uses : actions/setup-python@v5.3.0
53
53
with :
54
54
python-version : ${{ matrix.python }}
55
55
- name : Install wheel and test
@@ -71,11 +71,11 @@ jobs:
71
71
wordsize : [64]
72
72
steps :
73
73
- name : Download wheels
74
- uses : actions/download-artifact@v4
74
+ uses : actions/download-artifact@v4.1.8
75
75
with :
76
76
name : sdist-wheel
77
77
- name : Set up Python ${{ matrix.python }}
78
- uses : actions/setup-python@v4
78
+ uses : actions/setup-python@v5.3.0
79
79
with :
80
80
python-version : ${{ matrix.python }}
81
81
- name : Install wheel and test
@@ -96,11 +96,11 @@ jobs:
96
96
python : [3.8, 3.9, "3.10", 3.11]
97
97
steps :
98
98
- name : Download wheels
99
- uses : actions/download-artifact@v4
99
+ uses : actions/download-artifact@v4.1.8
100
100
with :
101
101
name : sdist-wheel
102
102
- name : Set up Python
103
- uses : actions/setup-python@v4
103
+ uses : actions/setup-python@v5.3.0
104
104
with :
105
105
python-version : ${{ matrix.python }}
106
106
- name : Install wheel and test
@@ -122,17 +122,17 @@ jobs:
122
122
id-token : write
123
123
steps :
124
124
- name : Download all
125
- uses : actions/download-artifact@v4
125
+ uses : actions/download-artifact@v4.1.8
126
126
- name : Move to dist
127
127
run : |
128
128
mkdir dist
129
129
cp */*.{whl,gz} dist/.
130
130
- name : Publish distribution to Test PyPI
131
131
if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
132
- uses : pypa/gh-action-pypi-publish@release/v1
132
+ uses : pypa/gh-action-pypi-publish@v1.12.3
133
133
with :
134
134
repository_url : https://test.pypi.org/legacy/
135
135
- name : Publish distribution to PRODUCTION PyPI
136
136
if : github.event_name == 'release'
137
- uses : pypa/gh-action-pypi-publish@release/v1
137
+ uses : pypa/gh-action-pypi-publish@v1.12.3
138
138
0 commit comments