From 8c196f4b6fcb2289a1be0e05440b19976d82e62c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 12:25:18 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/daily-manga-miner.yml | 2 +- .github/workflows/manga-on-demand.yml | 2 +- .github/workflows/ronin-on-demand.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/daily-manga-miner.yml b/.github/workflows/daily-manga-miner.yml index 3331743..b1cc6f4 100644 --- a/.github/workflows/daily-manga-miner.yml +++ b/.github/workflows/daily-manga-miner.yml @@ -18,7 +18,7 @@ jobs: # ── 1. Cache node_modules for instant sub-3s bootstrap ── - name: Cache Node Modules id: node-modules-cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/manga-on-demand.yml b/.github/workflows/manga-on-demand.yml index 03a852c..8002cf9 100644 --- a/.github/workflows/manga-on-demand.yml +++ b/.github/workflows/manga-on-demand.yml @@ -26,7 +26,7 @@ jobs: # ── 1. Cache node_modules for instant sub-3s bootstrap ── - name: Cache Node Modules id: node-modules-cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/ronin-on-demand.yml b/.github/workflows/ronin-on-demand.yml index 25a4820..e702836 100644 --- a/.github/workflows/ronin-on-demand.yml +++ b/.github/workflows/ronin-on-demand.yml @@ -32,7 +32,7 @@ jobs: # ── 1. Cache node_modules for instant sub-3s bootstrap ── - name: Cache Node Modules id: node-modules-cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} @@ -40,7 +40,7 @@ jobs: # ── 2. Cache Puppeteer Chromium binary to avoid re-downloading ~200MB ── - name: Cache Puppeteer Chromium id: puppeteer-cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/puppeteer key: puppeteer-browsers-${{ runner.os }}-${{ hashFiles('package-lock.json') }}