From 8d75e8cc77fd305d24f0b8592dccf2c39a17aabf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 01:23:56 +0000 Subject: [PATCH] build(deps): bump the actions group across 1 directory with 4 updates Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [codecov/codecov-action](https://github.com/codecov/codecov-action), [actions/cache](https://github.com/actions/cache) and [actions/stale](https://github.com/actions/stale). 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 `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/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/stale` from 10 to 11 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v10...v11) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action 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 - dependency-name: actions/stale dependency-version: '11' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/app-tests.yml | 4 ++-- .github/workflows/build-docs.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/docker-image-api.yml | 2 +- .github/workflows/docker-image.yml | 2 +- .github/workflows/stale.yml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/app-tests.yml b/.github/workflows/app-tests.yml index 822db6d55..15a04aa84 100644 --- a/.github/workflows/app-tests.yml +++ b/.github/workflows/app-tests.yml @@ -48,7 +48,7 @@ jobs: run: exit 1 - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: astral-sh/setup-uv@v7 @@ -85,6 +85,6 @@ jobs: uv run coverage xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 2ab5d5715..3d20248cc 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -13,7 +13,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Configure Git Credentials @@ -24,7 +24,7 @@ jobs: with: python-version: "3.12" - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV - - uses: actions/cache@v4 + - uses: actions/cache@v6 with: key: zensical-${{ env.cache_id }} path: ~/.cache diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f71b07fef..aa1a6bf48 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -48,7 +48,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/docker-image-api.yml b/.github/workflows/docker-image-api.yml index 790ea8ef5..f483f4098 100644 --- a/.github/workflows/docker-image-api.yml +++ b/.github/workflows/docker-image-api.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 54ef8a44f..e3d263883 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # This ensures all tags are fetched for git describe diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 2daf829f9..2db366b66 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Mark and close stale issues and pull requests - uses: actions/stale@v10 + uses: actions/stale@v11 with: days-before-issue-stale: 180 days-before-issue-close: 180 @@ -49,7 +49,7 @@ jobs: operations-per-run: 30 - name: Close issues and pull requests pending an answer - uses: actions/stale@v10 + uses: actions/stale@v11 with: days-before-stale: -1 days-before-close: 15