From d17ff0193842786cc27f34e1db00a6444f1c5abb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 02:03:20 +0000 Subject: [PATCH] GitHub Actions: Bump the gh-dependencies group across 1 directory with 2 updates Bumps the gh-dependencies group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 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/v6...v7) Updates `actions/cache` from 5 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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependencies - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 14 +++++++------- .github/workflows/lint.yml | 2 +- .github/workflows/query-performance.yml | 6 +++--- .github/workflows/snapshots.yml | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8d811992..852e3e48f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: run: sysctl -w vm.mmap_rnd_bits=28 - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: { 'fetch-depth': 0 } - name: Install unzip (for tests) and zstd (for faster caching) @@ -45,7 +45,7 @@ jobs: - name: Restore .build if: ${{ !(github.run_attempt > 1) }} # Because maybe the cache is causing issues id: "restore-cache" - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: .build key: "spi-debug-build-${{ runner.os }}-${{ github.event.after }}" @@ -56,7 +56,7 @@ jobs: - name: Cache .build if: steps.restore-cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: .build key: "spi-debug-build-${{ runner.os }}-${{ github.event.after }}" @@ -167,7 +167,7 @@ jobs: run: sysctl -w vm.mmap_rnd_bits=28 - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: { 'fetch-depth': 0 } - name: Install zstd (for faster caching) @@ -176,7 +176,7 @@ jobs: - name: Restore .build if: ${{ !(github.run_attempt > 1) }} # Because maybe the cache is causing issues id: "restore-cache" - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: .build key: "spi-release-build-${{ runner.os }}-${{ github.event.after }}" @@ -191,7 +191,7 @@ jobs: - name: Cache .build if: steps.restore-cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: .build key: "spi-release-build-${{ runner.os }}-${{ github.event.after }}" @@ -219,7 +219,7 @@ jobs: # --health-timeout 5s # --health-retries 5 # steps: - # - uses: actions/checkout@v6 + # - uses: actions/checkout@v7 # - name: Select Xcode 11.4 # run: sudo xcode-select -s /Applications/Xcode_11.4.app # - name: Log Xcode version diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 93858bf66..eb2bdc2c8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Lint Front-End run: make lint-front-end - name: Build Front-End diff --git a/.github/workflows/query-performance.yml b/.github/workflows/query-performance.yml index 7b9633378..568459439 100644 --- a/.github/workflows/query-performance.yml +++ b/.github/workflows/query-performance.yml @@ -31,7 +31,7 @@ jobs: image: registry.gitlab.com/finestructure/spi-base:2.2.1 steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: { 'fetch-depth': 0 } - name: Install unzip (for tests) and zstd (for faster caching) @@ -40,7 +40,7 @@ jobs: - name: Restore .build if: ${{ !(github.run_attempt > 1) }} # Because maybe the cache is causing issues id: "restore-cache" - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: .build key: "spi-query-performance-build-${{ runner.os }}-${{ github.event.after }}" @@ -51,7 +51,7 @@ jobs: - name: Cache .build if: steps.restore-cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: .build key: "spi-query-performance-build-${{ runner.os }}-${{ github.event.after }}" diff --git a/.github/workflows/snapshots.yml b/.github/workflows/snapshots.yml index cc66a7266..63efda0ac 100644 --- a/.github/workflows/snapshots.yml +++ b/.github/workflows/snapshots.yml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Build Front-End