Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Bump actions/upload-artifact from 4.6.0 to 4.6.1 #1156

Merged
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Upload Docker image artifact
# Only upload the image if the build was for linux/amd64, as we only need it for the integration tests
if: ${{ inputs.platform == 'linux/amd64' }}
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
with:
name: ${{ inputs.artifact-name }}
path: image.tar
2 changes: 1 addition & 1 deletion .github/workflows/import_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
poetry run python scripts/import_packages.py --jsonl-dir /tmp/jsonl-files --vec-db-path /tmp/sqlite_data/vectordb.db

- name: 'Upload SQLite Vector DB File'
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
with:
name: sqlite_data
path: /tmp/sqlite_data/vectordb.db
Expand Down