From 12fd1751aeb4ba2fc788b4ca177410732d4bc624 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 19:19:02 +0000 Subject: [PATCH] Bump actions/cache in the github_actions group across 1 directory Bumps the github_actions group with 1 update in the / directory: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 4.0.2 to 4.1.1 - [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.0.2...v4.1.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github_actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a07cf17..693ad49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: run: yarn install --immutable - name: Restore ESLint cache - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4.1.1 with: path: .cache/eslint key: eslint-main-cache @@ -69,13 +69,13 @@ jobs: - name: Save ESLint cache if: github.event_name == 'push' - uses: actions/cache/save@v4.0.2 + uses: actions/cache/save@v4.1.1 with: path: .cache/eslint key: eslint-main-cache - name: Restore prettier cache - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4.1.1 with: path: .cache/prettier key: prettier-main-cache @@ -94,7 +94,7 @@ jobs: - name: Save prettier cache if: github.event_name == 'push' - uses: actions/cache/save@v4.0.2 + uses: actions/cache/save@v4.1.1 with: path: .cache/prettier key: prettier-main-cache