diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 76498c877e..0d1d7d9c16 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -56,7 +56,7 @@ jobs: - uses: actions/checkout@v2.1.0 - uses: ammaraskar/gcc-problem-matcher@master - name: Setup cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.ccache diff --git a/.github/workflows/compile_docs.yml b/.github/workflows/compile_docs.yml index c5dd62c9f3..4b0b513838 100644 --- a/.github/workflows/compile_docs.yml +++ b/.github/workflows/compile_docs.yml @@ -23,7 +23,7 @@ jobs: with: python-version: '3.10' - name: Cache Python packages - uses: actions/cache@v2 + uses: actions/cache@v3 with: # Cache the Python package environment, excluding pip and setuptools installed by setup-python path: | @@ -44,7 +44,7 @@ jobs: pip install -r docs/requirements.txt - name: Setup Emscripten cache id: cache-system-libraries - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{env.EM_CACHE_FOLDER}} key: ${{env.EM_VERSION}}-${{ runner.os }}