[READ-ONLY] Mirror of https://github.com/jmrplens/PyOctaveBand. [Python3] Octave-Band and Fractional Octave-Band filter. For signal in time domain. jmrplens.github.io/PyOctaveBand/
acoustics audio filter frequency frequency-analysis frequency-domain octave python3 signal time-domain
0

Configure Feed

Select the types of activity you want to include in your feed.

ci(docs): derive pnpm store path and bump actions/cache to v6

Review follow-up:
- Resolve the pnpm store path via `pnpm store path` instead of hardcoding
~/.local/share/pnpm/store (it is actually .../store/v11 and varies by pnpm
version / XDG config, so the hardcoded key would never hit).
- Bump actions/cache v4 -> v6 (latest major).

pnpm stays on @latest via corepack by request (always track the newest release).

José M. Requena Plens (Jul 13, 2026, 1:08 AM +0200) 56bfa708 dece85ec

+7 -2
+7 -2
.github/workflows/docs.yml
··· 33 33 corepack enable 34 34 corepack prepare pnpm@latest --activate 35 35 pnpm --version 36 + - name: Resolve pnpm store path 37 + # Derive the store path from pnpm itself rather than hardcoding it: it 38 + # varies with pnpm version and XDG configuration. 39 + run: echo "PNPM_STORE=$(pnpm store path --silent)" >> "$GITHUB_ENV" 40 + working-directory: site 36 41 - name: Cache pnpm store 37 - uses: actions/cache@v4 42 + uses: actions/cache@v6 38 43 with: 39 - path: ~/.local/share/pnpm/store 44 + path: ${{ env.PNPM_STORE }} 40 45 key: pnpm-store-${{ runner.os }}-${{ hashFiles('site/pnpm-lock.yaml') }} 41 46 restore-keys: pnpm-store-${{ runner.os }}- 42 47 - name: Regenerate llms.txt from docs (freshness guarantee)