Skip to content

Commit 2fe2cae

Browse files
author
alex-omophub
committed
Update GitHub Actions workflow to use latest action versions
- Upgraded `actions/setup-python` from v5 to v6 for improved Python setup. - Updated `actions/upload-artifact` from v5 to v7 to enhance artifact handling. - Changed `actions/download-artifact` from v5 to v8 for better download capabilities.
1 parent a887c47 commit 2fe2cae

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0 # Required for hatch-vcs to get version from tags
17-
- uses: actions/setup-python@v5
17+
- uses: actions/setup-python@v6
1818
with:
1919
python-version: "3.12"
2020
- name: Install build tools
@@ -24,7 +24,7 @@ jobs:
2424
- name: Build package
2525
run: python -m build
2626
- name: Upload distributions
27-
uses: actions/upload-artifact@v5
27+
uses: actions/upload-artifact@v7
2828
with:
2929
name: release-dists
3030
path: dist/
@@ -39,7 +39,7 @@ jobs:
3939
id-token: write # Required for trusted publishing
4040
steps:
4141
- name: Download distributions
42-
uses: actions/download-artifact@v5
42+
uses: actions/download-artifact@v8
4343
with:
4444
name: release-dists
4545
path: dist/

0 commit comments

Comments
 (0)