From ddbbaab9df423ec84d044b2e2173f0cbb240cd73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 12 May 2024 21:24:48 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-css.yml | 2 +- .github/workflows/download-fonts.yml | 2 +- .github/workflows/release-package.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-css.yml b/.github/workflows/build-css.yml index 16274fb..34736ea 100644 --- a/.github/workflows/build-css.yml +++ b/.github/workflows/build-css.yml @@ -12,7 +12,7 @@ jobs: fetch-depth: 0 - name: Get node_modules From Cache id: get-modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ github.workspace }}/node_modules key: node-modules diff --git a/.github/workflows/download-fonts.yml b/.github/workflows/download-fonts.yml index 8d97f60..e6d8f27 100644 --- a/.github/workflows/download-fonts.yml +++ b/.github/workflows/download-fonts.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Load Fonts From Cache id: get-css-fonts - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ env.FONTS_PATH }} key: ${{ runner.os }}-css-fonts diff --git a/.github/workflows/release-package.yml b/.github/workflows/release-package.yml index aa1c912..c6774f1 100644 --- a/.github/workflows/release-package.yml +++ b/.github/workflows/release-package.yml @@ -51,7 +51,7 @@ jobs: fetch-depth: 0 - name: Load Fonts From Cache id: get-css-fonts - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ env.FONTS_PATH }} key: ${{ runner.os }}-css-fonts