Skip to content
Closed
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/go-inference-api-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version-file: services/inference-api/go.mod
cache: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/native-bridge-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Cache pinned llama.cpp CPU build
id: llama-cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: vendor/llama.cpp/build
key: llama-${{ runner.os }}-${{ env.LLAMA_CPP_COMMIT }}-cpu-shared-v2
Expand Down Expand Up @@ -202,15 +202,15 @@ jobs:

- name: Upload native model smoke report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: native-model-smoke-linux
path: native-model-smoke.json
if-no-files-found: ignore
retention-days: 7

- name: Setup Go for native service integration
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version-file: services/inference-api/go.mod
cache: false
Expand All @@ -235,7 +235,7 @@ jobs:
run: go test -race ./...

- name: Setup Python for adapter integration
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/native-vulkan-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Cache pinned Vulkan SDK
id: vulkan-cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ runner.temp }}/OpenMindAI-VulkanSDK
key: vulkan-sdk-windows-x64-${{ env.VULKAN_SDK_VERSION }}
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

- name: Cache pinned llama.cpp Vulkan build
id: llama-vulkan-cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: vendor/llama.cpp/build-vulkan
key: llama-${{ runner.os }}-${{ env.LLAMA_CPP_COMMIT }}-vulkan-${{ env.VULKAN_SDK_VERSION }}-dynamic-v1
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
Copy-Item services/native-worker/target/release/openmind-native-worker.exe native-vulkan-artifact

- name: Upload Vulkan runtime probe artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: openmindai-native-vulkan-${{ env.LLAMA_CPP_COMMIT }}
path: native-vulkan-artifact
Expand All @@ -282,7 +282,7 @@ jobs:

# Fresh runner: no llama build tree, cached SDK, Rust tools or exported PATH.
- name: Download the packaged Vulkan runtime
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: openmindai-native-vulkan-${{ env.LLAMA_CPP_COMMIT }}
path: native-vulkan-artifact
Expand All @@ -300,7 +300,7 @@ jobs:

- name: Upload Windows model smoke reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: native-model-smoke-windows
path: native-smoke-reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nemotron-live-qualification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Upload qualification report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: nemotron-e2e-report
path: nemotron-e2e-report.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/project-workspace-preflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v5
- uses: actions/setup-node@v7
with:
node-version: 24
cache: npm
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v5
- uses: actions/setup-node@v7
with:
node-version: 24
cache: npm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-experiments-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v7

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-readiness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Cache pinned llama.cpp Windows CPU build
id: llama-cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: vendor/llama.cpp/build
key: llama-${{ runner.os }}-${{ env.LLAMA_CPP_COMMIT }}-cpu-shared-v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Cache pinned llama.cpp Windows CPU build
id: llama-cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: vendor/llama.cpp/build
key: llama-${{ runner.os }}-${{ env.LLAMA_CPP_COMMIT }}-cpu-shared-v2
Expand Down
Loading