From d8253638eb36108c634223515c4d7af958e512a8 Mon Sep 17 00:00:00 2001 From: Alfredo Gallardo Date: Tue, 12 Nov 2024 08:18:47 -0300 Subject: [PATCH] - ci: bump shinkai-node v0.8.15 --- .github/workflows/pr-ci-healchecks.yml | 2 +- .github/workflows/release-dev.yml | 2 +- .github/workflows/release-prod.yml | 2 +- README.md | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr-ci-healchecks.yml b/.github/workflows/pr-ci-healchecks.yml index 61acd018..338d45c0 100644 --- a/.github/workflows/pr-ci-healchecks.yml +++ b/.github/workflows/pr-ci-healchecks.yml @@ -37,7 +37,7 @@ jobs: - name: Download side binaries env: ARCH: x86_64-unknown-linux-gnu - SHINKAI_NODE_VERSION: v0.8.14 + SHINKAI_NODE_VERSION: v0.8.15 OLLAMA_VERSION: v0.4.1 run: | npx ts-node ./ci-scripts/download-side-binaries.ts diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index 1b1f37fd..a64df090 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -208,7 +208,7 @@ jobs: - name: Download side binaries env: ARCH: ${{ matrix.arch }} - SHINKAI_NODE_VERSION: v0.8.14 + SHINKAI_NODE_VERSION: v0.8.15 OLLAMA_VERSION: v0.4.1 run: | npx ts-node ./ci-scripts/download-side-binaries.ts diff --git a/.github/workflows/release-prod.yml b/.github/workflows/release-prod.yml index 6a66b16b..62367435 100644 --- a/.github/workflows/release-prod.yml +++ b/.github/workflows/release-prod.yml @@ -206,7 +206,7 @@ jobs: - name: Download side binaries env: ARCH: ${{ matrix.arch }} - SHINKAI_NODE_VERSION: v0.8.14 + SHINKAI_NODE_VERSION: v0.8.15 OLLAMA_VERSION: v0.4.1 run: | npx ts-node ./ci-scripts/download-side-binaries.ts diff --git a/README.md b/README.md index 773ae0ed..eb00cdb4 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ $ git clone https://github.com/dcSpark/shinkai-apps ``` ARCH="aarch64-apple-darwin" \ OLLAMA_VERSION="v0.4.1" \ -SHINKAI_NODE_VERSION="v0.8.14" \ +SHINKAI_NODE_VERSION="v0.8.15" \ npx ts-node ./ci-scripts/download-side-binaries.ts ``` @@ -54,14 +54,14 @@ npx ts-node ./ci-scripts/download-side-binaries.ts ``` ARCH="x86_64-unknown-linux-gnu" \ OLLAMA_VERSION="v0.4.1"\ -SHINKAI_NODE_VERSION="v0.8.14" \ +SHINKAI_NODE_VERSION="v0.8.15" \ npx ts-node ./ci-scripts/download-side-binaries.ts ``` #### Windows ``` $ENV:OLLAMA_VERSION="v0.4.1" -$ENV:SHINKAI_NODE_VERSION="v0.8.14" +$ENV:SHINKAI_NODE_VERSION="v0.8.15" $ENV:ARCH="x86_64-pc-windows-msvc" npx ts-node ./ci-scripts/download-side-binaries.ts ```