From 40525616401669a66866eb3104d46da4d5336244 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 19:24:43 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5.0.5 to 6.1.0 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.1.0. - [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/v5.0.5...v6.1.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/publish_pykotor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish_pykotor.yml b/.github/workflows/publish_pykotor.yml index 1dff87be5..82269aabf 100644 --- a/.github/workflows/publish_pykotor.yml +++ b/.github/workflows/publish_pykotor.yml @@ -249,7 +249,7 @@ jobs: - name: Cache UPX if: ${{ (success() || failure()) && runner.os != 'macOS' }} - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 id: cache-upx with: path: upx-dir @@ -415,7 +415,7 @@ jobs: - name: Cache pip packages (Linux/macOS) if: ${{ (success() || failure()) && runner.os != 'Windows' }} - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 id: cache-pip-unix with: path: | @@ -437,7 +437,7 @@ jobs: - name: Cache pip packages (Windows) if: ${{ (success() || failure()) && runner.os == 'Windows' }} - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 id: cache-pip-windows with: path: ${{ steps.pip-cache-path.outputs.path }}