Skip to content

Commit 486cdbb

Browse files
wip
1 parent be76108 commit 486cdbb

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout
11+
- uses: actions/checkout@v6
1212
with:
1313
persist-credentials: false
1414
- name: Set up Python
15-
uses: actions/setup-python
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: "3.x"
1818
- name: Install pypa/build/pylint/requirements.txt

.github/workflows/publish-to-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout
14+
- uses: actions/checkout@v6
1515
with:
1616
persist-credentials: false
1717
- name: Set up Python
18-
uses: actions/setup-python
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: "3.x"
2121
- name: Install pypa/build
@@ -48,7 +48,7 @@ jobs:
4848

4949
steps:
5050
- name: Download all the dists
51-
uses: actions/download-artifact
51+
uses: actions/download-artifact@v4
5252
with:
5353
name: python-package-distributions
5454
path: dist/
@@ -69,7 +69,7 @@ jobs:
6969

7070
steps:
7171
- name: Download all the dists
72-
uses: actions/download-artifact
72+
uses: actions/download-artifact@v4
7373
with:
7474
name: python-package-distributions
7575
path: dist/

.github/workflows/publish-to-test-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v6
1212
with:
1313
persist-credentials: false
1414
- name: Set up Python
15-
uses: actions/setup-python
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: "3.x"
1818
- name: Install pypa/build
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build a binary wheel and a source tarball
2626
run: python3 -m build
2727
- name: Store the distribution packages
28-
uses: actions/upload-artifact
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: python-package-distributions
3131
path: dist/
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Download all the dists
48-
uses: actions/download-artifact
48+
uses: actions/download-artifact@v4
4949
with:
5050
name: python-package-distributions
5151
path: dist/

0 commit comments

Comments
 (0)