From 12c5b602bfd5f9bf696060f3c724a22691fe2931 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:53:37 +0000 Subject: [PATCH] chore(deps): Bump the github-actions group across 1 directory with 2 updates Bumps the github-actions 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: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 20 ++++++++++---------- .github/workflows/commitlint.yml | 2 +- .github/workflows/pre-commit.yml | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c10ea7d..9cf30c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: } steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set environment variables run: | @@ -70,7 +70,7 @@ jobs: uv run conan profile detect - name: Cache Conan packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CONAN_HOME }}/p key: conan-${{ runner.os }}-${{ matrix.config.cc }}-${{ matrix.build.type }}-${{ hashFiles('conanfile.py') }} @@ -135,7 +135,7 @@ jobs: } steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set environment variables run: | @@ -161,7 +161,7 @@ jobs: uv run conan profile detect - name: Cache Conan packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CONAN_HOME }}/p key: conan-${{ runner.os }}-clang-${{ matrix.build.type }}-${{ hashFiles('conanfile.py') }} @@ -227,7 +227,7 @@ jobs: # } steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set environment variables run: | @@ -245,7 +245,7 @@ jobs: uv run conan profile detect - name: Cache Conan packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CONAN_HOME }}/p key: conan-${{ runner.os }}-${{ matrix.config.cc }}-${{ matrix.build.type }}-${{ hashFiles('conanfile.py') }} @@ -304,7 +304,7 @@ jobs: } steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set environment variables run: | @@ -326,7 +326,7 @@ jobs: uv run conan profile detect - name: Cache Conan packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CONAN_HOME }}/p key: conan-${{ runner.os }}-${{ matrix.config.cc }}-${{ matrix.build.type }}-${{ hashFiles('conanfile.py') }} @@ -370,7 +370,7 @@ jobs: } steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set environment variables run: | @@ -388,7 +388,7 @@ jobs: uv run conan profile detect - name: Cache Conan packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CONAN_HOME }}/p key: conan-${{ runner.os }}-${{ hashFiles('conanfile.py') }} diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 96ce350..b6ee7d1 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index ed83d62..3bae371 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup uv uses: astral-sh/setup-uv@v7