codeql: bump actions/cache from 4 to 5

Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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...v5) updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major Originally-authored-by: dependabot[bot] <support@github.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed Apr 13, 2026 at 16:24 UTC f65aba1e87db64413b6d1ed5ae5a45b5a84a0997
1 file changed +2 -2
.github/workflows/coverity.yml
+2 -2
@@ -98,7 +98,7 @@ jobs:
98 # A cache miss will add ~30s to create, but a cache hit will save minutes.
99 - name: restore the Coverity Build Tool
100 id: cache
101 - uses: actions/cache/restore@v4
101 + uses: actions/cache/restore@v5
102 with:
103 path: ${{ runner.temp }}/cov-analysis
104 key: cov-build-${{ env.COVERITY_LANGUAGE }}-${{ env.COVERITY_PLATFORM }}-${{ steps.lookup.outputs.hash }}
@@ -141,7 +141,7 @@ jobs:
141 esac
142 - name: cache the Coverity Build Tool
143 if: steps.cache.outputs.cache-hit != 'true'
144 - uses: actions/cache/save@v4
144 + uses: actions/cache/save@v5
145 with:
146 path: ${{ runner.temp }}/cov-analysis
147 key: cov-build-${{ env.COVERITY_LANGUAGE }}-${{ env.COVERITY_PLATFORM }}-${{ steps.lookup.outputs.hash }}