Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
dotnet-version: '6.0.x'

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: ${{ matrix.os.platform }}
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
python -m build && python -m twine check dist/*

- name: "Upload distribution artifact"
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v4
with:
name: ${{ env.LIBRARY_NAME }}-py${{ matrix.python}}-${{ matrix.os }}-${{ matrix.platform }}-artifacts
path: dist/
Expand All @@ -171,7 +171,7 @@ jobs:
uses: actions/checkout@v4

- name: "Install Python ${{ env.MAIN_PYTHON_VERSION }}"
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

Expand All @@ -180,7 +180,7 @@ jobs:
python -m pip install twine

- name: "Download the library artifacts from build-library step"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ env.LIBRARY_NAME }}-artifacts
path: ${{ env.LIBRARY_NAME }}-artifacts
Expand Down
Loading