From 98559abf6c4e7e5719857bece7b964b27284f8fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 May 2026 20:41:55 +0000 Subject: [PATCH] deps(deps): 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/build-staging.yml | 2 +- .github/workflows/push.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-staging.yml b/.github/workflows/build-staging.yml index 76def95a..3366ba0a 100644 --- a/.github/workflows/build-staging.yml +++ b/.github/workflows/build-staging.yml @@ -30,7 +30,7 @@ jobs: echo "🏷️ Set VERSION: $VERSION" - name: Cache CLI tools (SC + Welder) - uses: actions/cache@v4 # Automatically uses Blacksmith cache on Blacksmith runners + uses: actions/cache@v5 # Automatically uses Blacksmith cache on Blacksmith runners with: path: | ~/.local/bin/sc diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index 30e1bf4c..8db845b1 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -101,7 +101,7 @@ jobs: echo "cicd-bot-telegram-token=$(./bin/sc stack secret-get -s dist cicd-bot-telegram-token)" >> $GITHUB_OUTPUT echo "cicd-bot-telegram-chat-id=$(./bin/sc stack secret-get -s dist cicd-bot-telegram-chat-id)" >> $GITHUB_OUTPUT - name: save schemas cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: docs/schemas key: schemas-${{ github.run_id }} @@ -240,7 +240,7 @@ jobs: steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: restore cached schemas - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: docs/schemas key: schemas-${{ github.run_id }}