mirror of https://github.com/google/oss-fuzz.git
58ad90a61a
Signed-off-by: jongwooo <jongwooo.han@gmail.com> ## Details Updated workflows to cache dependencies using [actions/setup-python](https://github.com/actions/setup-python#caching-packages-dependencies). `setup-python@v3` or newer has caching **built-in**. ### AS-IS ```yaml - name: Setup python environment uses: actions/setup-python@v3 with: python-version: 3.8 ``` ### TO-BE ```yaml - name: Setup python environment uses: actions/setup-python@v3 with: python-version: 3.8 cache: pip cache-dependency-path: | infra/ci/requirements.txt infra/build/functions/requirements.txt infra/cifuzz/requirements.txt ``` ## References - [https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows) - [https://thearchivelog.dev/article/caching-dependencies-to-speed-up-workflows/](https://thearchivelog.dev/article/caching-dependencies-to-speed-up-workflows/) Signed-off-by: jongwooo <jongwooo.han@gmail.com> |
||
---|---|---|
.. | ||
workflows | ||
CODEOWNERS |