From 691f796df64c3f4022a2889e9fbbf877601e20b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 18:18:23 +0000 Subject: [PATCH] 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 ... Signed-off-by: dependabot[bot] --- .github/workflows/linux.yml | 2 +- .github/workflows/mac.yml | 4 ++-- .github/workflows/mac_packaged.yml | 4 ++-- .github/workflows/win.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 87c9480ed2..ed66b05801 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -82,7 +82,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Libraries cache. - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ runner.temp }}/.buildx-cache key: ${{ runner.OS }}-libs-${{ hashFiles('Telegram/build/docker/centos_env/**') }} diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index aada365934..06e8f280ac 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -78,7 +78,7 @@ jobs: - name: ThirdParty cache. id: cache-third-party - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ThirdParty key: ${{ runner.OS }}-third-party-${{ hashFiles(format('{0}/{1}', env.REPO_NAME, env.PREPARE_PATH)) }} @@ -86,7 +86,7 @@ jobs: - name: Libraries cache. id: cache-libs - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: Libraries key: ${{ runner.OS }}-libs-${{ hashFiles(format('{0}/{1}', env.REPO_NAME, env.PREPARE_PATH)) }} diff --git a/.github/workflows/mac_packaged.yml b/.github/workflows/mac_packaged.yml index 5cce0656d9..b829c937e4 100644 --- a/.github/workflows/mac_packaged.yml +++ b/.github/workflows/mac_packaged.yml @@ -100,7 +100,7 @@ jobs: - name: WebRTC cache. id: cache-webrtc - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.LibrariesPath }}/tg_owt key: ${{ runner.OS }}-webrtc-${{ env.WEBRTC }}-${{ env.CACHE_KEY }} @@ -122,7 +122,7 @@ jobs: - name: TDE2E cache. id: cache-tde2e - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.LibrariesPath }}/tde2e key: ${{ runner.OS }}-tde2e-${{ env.CACHE_KEY }} diff --git a/.github/workflows/win.yml b/.github/workflows/win.yml index 66f735b883..3394652d6b 100644 --- a/.github/workflows/win.yml +++ b/.github/workflows/win.yml @@ -108,7 +108,7 @@ jobs: - name: ThirdParty cache. id: cache-third-party - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.TBUILD }}\ThirdParty key: ${{ runner.OS }}-${{ matrix.arch }}-third-party-${{ env.CACHE_KEY }} @@ -116,7 +116,7 @@ jobs: - name: Libraries cache. id: cache-libs - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.TBUILD }}\Libraries key: ${{ runner.OS }}-${{ matrix.arch }}-libs-${{ env.CACHE_KEY }}