Skip to content

Commit 0f766ac

Browse files
authored
CI: Update actions version
By looking at #15 failing workflows, I have the feeling that the CICD can't run due to the use of old actions. This PR updates setup-python and artifact related actions.
1 parent 46dc4b2 commit 0f766ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci_cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
dotnet-version: '6.0.x'
7474

7575
- name: Set up Python ${{ matrix.python }}
76-
uses: actions/setup-python@v2
76+
uses: actions/setup-python@v5
7777
with:
7878
python-version: ${{ matrix.python }}
7979
architecture: ${{ matrix.platform }}
@@ -132,7 +132,7 @@ jobs:
132132
python -m build && python -m twine check dist/*
133133
134134
- name: "Upload distribution artifact"
135-
uses: actions/upload-artifact@v3.1.0
135+
uses: actions/upload-artifact@v4
136136
with:
137137
name: ${{ env.LIBRARY_NAME }}-py${{ matrix.python}}-${{ matrix.os }}-${{ matrix.platform }}-artifacts
138138
path: dist/
@@ -158,7 +158,7 @@ jobs:
158158
uses: actions/checkout@v4
159159

160160
- name: "Install Python ${{ env.MAIN_PYTHON_VERSION }}"
161-
uses: actions/setup-python@v4
161+
uses: actions/setup-python@v5
162162
with:
163163
python-version: ${{ env.MAIN_PYTHON_VERSION }}
164164

@@ -167,7 +167,7 @@ jobs:
167167
python -m pip install twine
168168
169169
- name: "Download the library artifacts from build-library step"
170-
uses: actions/download-artifact@v3
170+
uses: actions/download-artifact@v4
171171
with:
172172
name: ${{ env.LIBRARY_NAME }}-artifacts
173173
path: ${{ env.LIBRARY_NAME }}-artifacts

0 commit comments

Comments
 (0)