diff --git a/.github/workflows/coding_guidelines.yml b/.github/workflows/coding_guidelines.yml index a5c4584ae8d..2b12d6a7bb3 100644 --- a/.github/workflows/coding_guidelines.yml +++ b/.github/workflows/coding_guidelines.yml @@ -14,7 +14,7 @@ jobs: fetch-depth: 0 - name: cache-pip - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-doc-pip diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml index 2677b161792..9f8b8b0fdf9 100644 --- a/.github/workflows/compliance.yml +++ b/.github/workflows/compliance.yml @@ -34,7 +34,7 @@ jobs: fetch-depth: 0 - name: cache-pip - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-doc-pip diff --git a/.github/workflows/devicetree_checks.yml b/.github/workflows/devicetree_checks.yml index daed785b60a..cb6be933e16 100644 --- a/.github/workflows/devicetree_checks.yml +++ b/.github/workflows/devicetree_checks.yml @@ -36,7 +36,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: cache-pip-linux if: startsWith(runner.os, 'Linux') - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }} @@ -44,7 +44,7 @@ jobs: ${{ runner.os }}-pip-${{ matrix.python-version }} - name: cache-pip-mac if: startsWith(runner.os, 'macOS') - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/Library/Caches/pip # Trailing '-' was just to get a different cache name @@ -53,7 +53,7 @@ jobs: ${{ runner.os }}-pip-${{ matrix.python-version }}- - name: cache-pip-win if: startsWith(runner.os, 'Windows') - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~\AppData\Local\pip\Cache key: ${{ runner.os }}-pip-${{ matrix.python-version }} diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml index 914271d6412..d5c329fe424 100644 --- a/.github/workflows/doc-build.yml +++ b/.github/workflows/doc-build.yml @@ -54,7 +54,7 @@ jobs: echo "${PWD}/doxygen-${DOXYGEN_VERSION}/bin" >> $GITHUB_PATH - name: cache-pip - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.cache/pip key: pip-${{ hashFiles('scripts/requirements-doc.txt') }} @@ -132,7 +132,7 @@ jobs: apt-get install -y python3-pip ninja-build doxygen graphviz librsvg2-bin - name: cache-pip - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.cache/pip key: pip-${{ hashFiles('scripts/requirements-doc.txt') }} diff --git a/.github/workflows/twister_tests.yml b/.github/workflows/twister_tests.yml index 8b93977d12b..481c0e8127c 100644 --- a/.github/workflows/twister_tests.yml +++ b/.github/workflows/twister_tests.yml @@ -34,7 +34,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: cache-pip-linux if: startsWith(runner.os, 'Linux') - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }} diff --git a/.github/workflows/west_cmds.yml b/.github/workflows/west_cmds.yml index a80604bde46..931d36e3a7e 100644 --- a/.github/workflows/west_cmds.yml +++ b/.github/workflows/west_cmds.yml @@ -37,7 +37,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: cache-pip-linux if: startsWith(runner.os, 'Linux') - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }} @@ -45,7 +45,7 @@ jobs: ${{ runner.os }}-pip-${{ matrix.python-version }} - name: cache-pip-mac if: startsWith(runner.os, 'macOS') - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/Library/Caches/pip # Trailing '-' was just to get a different cache name @@ -54,7 +54,7 @@ jobs: ${{ runner.os }}-pip-${{ matrix.python-version }}- - name: cache-pip-win if: startsWith(runner.os, 'Windows') - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~\AppData\Local\pip\Cache key: ${{ runner.os }}-pip-${{ matrix.python-version }}