From ef994bba70d6048190714b2c464aed82e9d0e480 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 01:25:49 +0000 Subject: [PATCH] build(deps): bump the actions group across 1 directory with 6 updates Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `4` | `4.37.3` | | [docker/login-action](https://github.com/docker/login-action) | `4` | `4.5.2` | | [actions/stale](https://github.com/actions/stale) | `10` | `11` | 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 `github/codeql-action` from 4 to 4.37.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v4...v4.37.3) Updates `docker/login-action` from 4 to 4.5.2 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v4...v4.5.2) 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: github/codeql-action dependency-version: 4.37.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/login-action dependency-version: 4.5.2 dependency-type: direct:production update-type: version-update:semver-minor 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 | 8 ++++---- .github/workflows/docker-image-api.yml | 4 ++-- .github/workflows/docker-image.yml | 4 ++-- .github/workflows/stale.yml | 4 ++-- 6 files changed, 14 insertions(+), 14 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..c312db396 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -48,11 +48,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v4 + uses: github/codeql-action/init@v4.37.3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -66,7 +66,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v4 + uses: github/codeql-action/autobuild@v4.37.3 # â„šī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -79,6 +79,6 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v4 + uses: github/codeql-action/analyze@v4.37.3 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/docker-image-api.yml b/.github/workflows/docker-image-api.yml index 790ea8ef5..de840ffd7 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 @@ -47,7 +47,7 @@ jobs: type=raw,value=api - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@v4 + uses: docker/login-action@v4.5.2 with: registry: ${{ env.REGISTRY }} username: ${{ github.repository_owner }} diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 54ef8a44f..bcbc8c0b0 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 @@ -68,7 +68,7 @@ jobs: # Only log in if we're going to push - name: Log into registry ${{ env.REGISTRY }} if: steps.push-flag.outputs.PUSH == 'true' - uses: docker/login-action@v4 + uses: docker/login-action@v4.5.2 with: registry: ${{ env.REGISTRY }} username: ${{ github.repository_owner }} 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