Skip to content

Commit 8aefc70

Browse files
authored
Merge pull request #3 from sbesson/node20_migration
Migrate actions to Node 20
2 parents a22946f + e674346 commit 8aefc70

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
submodules: recursive
1919
- name: Set up Python
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Prepare build environment
@@ -38,9 +38,9 @@ jobs:
3838
python setup.py build -j 6
3939
python setup.py bdist_wheel
4040
- name: Upload artifacts
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
43-
name: artifacts
43+
name: artifacts-${{ matrix.python-version }}
4444
path: zeroc-ice-3.6.5/dist/*.whl
4545
if-no-files-found: error
4646
release:
@@ -49,11 +49,11 @@ jobs:
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Download artifacts from build
52-
uses: actions/download-artifact@v3
52+
uses: actions/download-artifact@v4
5353
- name: List artifacts
5454
run: ls -R
5555
- name: Release
5656
uses: softprops/action-gh-release@v1
5757
with:
5858
files: |
59-
artifacts/*.whl
59+
artifacts-*/*.whl

0 commit comments

Comments
 (0)