Skip to content

Commit 12d8806

Browse files
committed
chore: update GitHub Actions to use latest versions of checkout, setup-python, upload-artifact, and download-artifact
1 parent 90468f8 commit 12d8806

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: Check out repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: "3.13"
2424

@@ -30,7 +30,7 @@ jobs:
3030
python -m twine check dist/*
3131
3232
- name: Upload distribution artifacts
33-
uses: actions/upload-artifact@v4
33+
uses: actions/upload-artifact@v5
3434
with:
3535
name: python-package-distributions
3636
path: dist/
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Download distribution artifacts
50-
uses: actions/download-artifact@v4
50+
uses: actions/download-artifact@v6
5151
with:
5252
name: python-package-distributions
5353
path: dist/

0 commit comments

Comments
 (0)