Caching is not functioning properly, as each step of the Chromium installation process requires a fresh download instead of utilizing the local version.

Part of workflow for reference
- name: Install Google Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: 120
- name: Check Google Chrome Version
run: chrome --version
- name: Install Google Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: 120
- name: Check Google Chrome Version
run: chrome --version
Caching is not functioning properly, as each step of the Chromium installation process requires a fresh download instead of utilizing the local version.
Part of workflow for reference