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') }}