From 28cbc9d949759bb5f174b6eb5b705bb51f96b15d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2026 07:59:54 +0000 Subject: [PATCH] ci: bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/compat.yml | 4 ++-- .github/workflows/maintenance.yml | 10 +++++----- .github/workflows/test.yml | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/compat.yml b/.github/workflows/compat.yml index 630b8bf..f1e529f 100644 --- a/.github/workflows/compat.yml +++ b/.github/workflows/compat.yml @@ -36,13 +36,13 @@ jobs: UPVECTOR_EMBEDDING_MODEL: fake-embedding UPVECTOR_EMBEDDING_DIMENSION: 8 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: oven-sh/setup-bun@v2 with: bun-version: 1.3.6 - name: Cache Bun dependencies - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }} diff --git a/.github/workflows/maintenance.yml b/.github/workflows/maintenance.yml index e69decd..497ad0b 100644 --- a/.github/workflows/maintenance.yml +++ b/.github/workflows/maintenance.yml @@ -27,13 +27,13 @@ jobs: name: Security audit (bun audit) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: oven-sh/setup-bun@v2 with: bun-version: ${{ env.BUN_PIN }} - name: Cache Bun dependencies - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }} @@ -113,7 +113,7 @@ jobs: UPVECTOR_EMBEDDING_MODEL: fake-embedding UPVECTOR_EMBEDDING_DIMENSION: 8 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: oven-sh/setup-bun@v2 with: bun-version: latest @@ -172,7 +172,7 @@ jobs: UPVECTOR_EMBEDDING_MODEL: fake-embedding UPVECTOR_EMBEDDING_DIMENSION: 8 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: oven-sh/setup-bun@v2 with: bun-version: ${{ env.BUN_PIN }} @@ -210,7 +210,7 @@ jobs: name: Docker build + smoke runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Build image run: docker build -t up-vector:smoke . diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6fb658e..656024b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,13 +12,13 @@ jobs: name: Unit Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: oven-sh/setup-bun@v2 with: bun-version: 1.3.6 - name: Cache Bun dependencies - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }} @@ -54,13 +54,13 @@ jobs: UPVECTOR_EMBEDDING_MODEL: fake-embedding UPVECTOR_EMBEDDING_DIMENSION: 8 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: oven-sh/setup-bun@v2 with: bun-version: 1.3.6 - name: Cache Bun dependencies - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.bun/install/cache key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }}