Skip to content

Commit e8aa92e

Browse files
Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 178e7d0 commit e8aa92e

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/main.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Run Linter and Formatter
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- uses: actions/setup-python@v6
1616
with:
1717
python-version: "3.11"
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
- uses: actions/setup-python@v6
3636
with:
3737
python-version: ${{ matrix.version }}
@@ -42,7 +42,7 @@ jobs:
4242
pytest test/unittests --html=test-report-${{ matrix.version }}.html --self-contained-html
4343
- name: Upload test results
4444
if: always()
45-
uses: actions/upload-artifact@v5
45+
uses: actions/upload-artifact@v7
4646
with:
4747
name: test-results-${{ matrix.version }}
4848
path: test-report-${{ matrix.version }}.html
@@ -69,7 +69,7 @@ jobs:
6969
matrix:
7070
version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
7171
steps:
72-
- uses: actions/checkout@v5
72+
- uses: actions/checkout@v6
7373
- uses: actions/setup-python@v6
7474
with:
7575
python-version: ${{ matrix.version }}
@@ -98,7 +98,7 @@ jobs:
9898
matrix:
9999
version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102
- uses: actions/setup-python@v6
103103
with:
104104
python-version: ${{ matrix.version }}

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717
- name: Set up Python 3.11
@@ -23,7 +23,7 @@ jobs:
2323
- name: Build a binary wheel
2424
run: python -m build
2525
- name: Create Wheel Artifacts
26-
uses: actions/upload-artifact@v5
26+
uses: actions/upload-artifact@v7
2727
with:
2828
path: "dist/*.whl"
2929
name: weaviate-cli-wheel
@@ -36,7 +36,7 @@ jobs:
3636
contents: write
3737
steps:
3838
- name: Download build artifact to append to release
39-
uses: actions/download-artifact@v6
39+
uses: actions/download-artifact@v8
4040
with:
4141
name: weaviate-cli-wheel
4242
path: dist
@@ -51,7 +51,7 @@ jobs:
5151
needs: [gh-release]
5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@v5
54+
uses: actions/checkout@v6
5555
with:
5656
fetch-depth: 0
5757
- name: Set up Python 3.11

0 commit comments

Comments
 (0)