From 6271ba1bee2538f6ffcf4695b21b1aabbc4f0063 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 05:20:13 +0000 Subject: [PATCH] build(deps): bump the workflow-actions group with 6 updates Bumps the workflow-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/setup-node](https://github.com/actions/setup-node) | `5` | `7` | | [actions/setup-go](https://github.com/actions/setup-go) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `6` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | Updates `actions/setup-node` from 5 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v5...v7) Updates `actions/setup-go` from 6 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v6...v7) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/go-inference-api-ci.yml | 2 +- .github/workflows/native-bridge-ci.yml | 8 ++++---- .github/workflows/native-vulkan-ci.yml | 10 +++++----- .github/workflows/nemotron-live-qualification.yml | 2 +- .github/workflows/project-workspace-preflight.yml | 4 ++-- .github/workflows/python-experiments-ci.yml | 2 +- .github/workflows/release-readiness.yml | 2 +- .github/workflows/release.yml | 2 +- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/go-inference-api-ci.yml b/.github/workflows/go-inference-api-ci.yml index 1f5d05dc..910bfbbd 100644 --- a/.github/workflows/go-inference-api-ci.yml +++ b/.github/workflows/go-inference-api-ci.yml @@ -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 diff --git a/.github/workflows/native-bridge-ci.yml b/.github/workflows/native-bridge-ci.yml index e9d23651..8e2fc09a 100644 --- a/.github/workflows/native-bridge-ci.yml +++ b/.github/workflows/native-bridge-ci.yml @@ -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 @@ -202,7 +202,7 @@ 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 @@ -210,7 +210,7 @@ jobs: 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 @@ -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" diff --git a/.github/workflows/native-vulkan-ci.yml b/.github/workflows/native-vulkan-ci.yml index 49df3229..3684f65f 100644 --- a/.github/workflows/native-vulkan-ci.yml +++ b/.github/workflows/native-vulkan-ci.yml @@ -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 }} @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/nemotron-live-qualification.yml b/.github/workflows/nemotron-live-qualification.yml index a3b66126..cc89f01a 100644 --- a/.github/workflows/nemotron-live-qualification.yml +++ b/.github/workflows/nemotron-live-qualification.yml @@ -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 diff --git a/.github/workflows/project-workspace-preflight.yml b/.github/workflows/project-workspace-preflight.yml index 6c615b5e..fb2af6cb 100644 --- a/.github/workflows/project-workspace-preflight.yml +++ b/.github/workflows/project-workspace-preflight.yml @@ -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 @@ -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 diff --git a/.github/workflows/python-experiments-ci.yml b/.github/workflows/python-experiments-ci.yml index 551b7ea0..a95b2fdc 100644 --- a/.github/workflows/python-experiments-ci.yml +++ b/.github/workflows/python-experiments-ci.yml @@ -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" diff --git a/.github/workflows/release-readiness.yml b/.github/workflows/release-readiness.yml index 2f2d0dc3..b5a7e404 100644 --- a/.github/workflows/release-readiness.yml +++ b/.github/workflows/release-readiness.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 83074981..0da9455c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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