@@ -16,11 +16,11 @@ jobs:
16
16
permissions :
17
17
id-token : write # IMPORTANT: this permission is mandatory for trusted publishing
18
18
steps :
19
- - uses : actions/checkout@v4
19
+ - uses : actions/checkout@v5
20
20
with :
21
21
persist-credentials : false
22
22
- name : Set up Python
23
- uses : actions/setup-python@v5
23
+ uses : actions/setup-python@v6
24
24
with :
25
25
python-version : " 3.13"
26
26
- name : Install pypa/build
@@ -48,12 +48,12 @@ jobs:
48
48
id-token : write # IMPORTANT: mandatory for trusted publishing
49
49
steps :
50
50
- name : Download all the dists
51
- uses : actions/download-artifact@v4
51
+ uses : actions/download-artifact@v5
52
52
with :
53
53
name : python-package-distributions
54
54
path : dist/
55
55
- name : Publish distribution 📦 to PyPI
56
- uses : pypa/gh-action-pypi-publish@v1.12.4
56
+ uses : pypa/gh-action-pypi-publish@v1.13.0
57
57
58
58
publish-to-testpypi :
59
59
name : Publish Python 🐍 distribution 📦 to TestPyPI
@@ -70,12 +70,12 @@ jobs:
70
70
71
71
steps :
72
72
- name : Download all the dists
73
- uses : actions/download-artifact@v4
73
+ uses : actions/download-artifact@v5
74
74
with :
75
75
name : python-package-distributions
76
76
path : dist/
77
77
- name : Publish distribution 📦 to TestPyPI
78
- uses : pypa/gh-action-pypi-publish@v1.12.4
78
+ uses : pypa/gh-action-pypi-publish@v1.13.0
79
79
with :
80
80
repository-url : https://test.pypi.org/legacy/
81
81
skip-existing : true
0 commit comments