Skip to content

Commit c82f38f

Browse files
committed
fix deprecated action
1 parent f5fd08d commit c82f38f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ jobs:
5454
run: |
5555
export VER=v$(python -c "exec(open('src/fcl/version.py','r').read());print(__version__)")
5656
echo "tag_name=${VER}" >> $GITHUB_OUTPUT
57-
- uses: actions/download-artifact@v3
58-
with:
59-
path: dist
60-
pattern: wheels-*
61-
merge-multiple: true
57+
- uses: actions/download-artifact@v4
58+
with:
59+
path: dist
60+
pattern: wheels-*
61+
merge-multiple: true
6262
- uses: ncipollo/[email protected]
6363
with:
6464
artifacts: "dist/*"

src/fcl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.0.7"
1+
__version__ = "0.7.0.8"

0 commit comments

Comments
 (0)