From 6c78de0af5098e6fc87ee8e62886427e26c58907 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 16:02:35 +0000 Subject: [PATCH] Bump actions/cache from 3 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- .github/workflows/release.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f35b618e83..b7eb768c0b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,28 +18,28 @@ jobs: echo "SOURCE_ROUTEHELPER_SHA256=$(.\sha256.ps1 .\RouteHelper)" | Out-File -Append -Encoding UTF8 -FilePath $Env:GITHUB_ENV - name: Cache Netch - uses: actions/cache@v3 + uses: actions/cache@v6 with: key: Netch-${{ runner.os }}-Netch-${{ env.SOURCE_NETCH_SHA256 }} path: | .\Netch\bin - name: Cache Other - uses: actions/cache@v3 + uses: actions/cache@v6 with: key: Netch-${{ runner.os }}-Other-${{ env.SOURCE_OTHER_SHA256 }} path: | .\Other\release - name: Cache Redirector - uses: actions/cache@v3 + uses: actions/cache@v6 with: key: Netch-${{ runner.os }}-Redirector-${{ env.SOURCE_REDIRECTOR_SHA256 }} path: | .\Redirector\bin - name: Cache RouteHelper - uses: actions/cache@v3 + uses: actions/cache@v6 with: key: Netch-${{ runner.os }}-RouteHelper-${{ env.SOURCE_ROUTEHELPER_SHA256 }} path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 88b32ac9d2..db3c7ae331 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,21 +21,21 @@ jobs: echo "SOURCE_ROUTEHELPER_SHA256=$(.\sha256.ps1 .\RouteHelper)" | Out-File -Append -Encoding UTF8 -FilePath $Env:GITHUB_ENV - name: Cache Netch - uses: actions/cache@v3 + uses: actions/cache@v6 with: key: Netch-${{ runner.os }}-Netch-${{ env.SOURCE_NETCH_SHA256 }} path: | .\Netch\bin - name: Cache Redirector - uses: actions/cache@v3 + uses: actions/cache@v6 with: key: Netch-${{ runner.os }}-Redirector-${{ env.SOURCE_REDIRECTOR_SHA256 }} path: | .\Redirector\bin - name: Cache RouteHelper - uses: actions/cache@v3 + uses: actions/cache@v6 with: key: Netch-${{ runner.os }}-RouteHelper-${{ env.SOURCE_ROUTEHELPER_SHA256 }} path: |