Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Run Linter and Formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.11"
Expand All @@ -31,7 +31,7 @@ jobs:
matrix:
version: [ "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.version }}
Expand All @@ -42,7 +42,7 @@ jobs:
pytest test/unittests --html=test-report-${{ matrix.version }}.html --self-contained-html
- name: Upload test results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: test-results-${{ matrix.version }}
path: test-report-${{ matrix.version }}.html
Expand All @@ -69,7 +69,7 @@ jobs:
matrix:
version: [ "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.version }}
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
matrix:
version: [ "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.version }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python 3.11
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Build a binary wheel
run: python -m build
- name: Create Wheel Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
path: "dist/*.whl"
name: weaviate-cli-wheel
Expand All @@ -36,7 +36,7 @@ jobs:
contents: write
steps:
- name: Download build artifact to append to release
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: weaviate-cli-wheel
path: dist
Expand All @@ -51,7 +51,7 @@ jobs:
needs: [gh-release]
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python 3.11
Expand Down
Loading