From fb7c31af382ac7b65c1e651a8729e63d2f3d0e47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 15:02:27 +0000 Subject: [PATCH] build: 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/font-cache.yml | 4 ++-- .github/workflows/main.yml | 6 +++--- .github/workflows/publish.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/font-cache.yml b/.github/workflows/font-cache.yml index ea38592..c2529a0 100644 --- a/.github/workflows/font-cache.yml +++ b/.github/workflows/font-cache.yml @@ -32,7 +32,7 @@ jobs: - name: Restore font cache id: cache-font-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: | packages/fontpicker/font-cache @@ -46,7 +46,7 @@ jobs: - name: Save font-cache id: cache-font-save - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: | packages/fontpicker/font-cache diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5064748..a029c93 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -58,7 +58,7 @@ jobs: run: npm run build - name: Cache Cypress binary - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/Cypress key: cypress-${{ runner.os }}-cypress-${{ hashFiles('package-lock.json') }} @@ -98,7 +98,7 @@ jobs: - name: Restore font cache id: cache-font-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: | packages/fontpicker/font-cache @@ -111,7 +111,7 @@ jobs: - name: Save font cache id: cache-font-save - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: | packages/fontpicker/font-cache diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3e97ed4..4e4bfc5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -64,7 +64,7 @@ jobs: - name: Restore font cache id: cache-font-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: | packages/fontpicker/font-cache @@ -77,7 +77,7 @@ jobs: - name: Save font cache id: cache-font-save - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: | packages/fontpicker/font-cache