diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 87133aa..d2230cb 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 env: cache-name: cache-node-modules with: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dbd7c8f..8132ed3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,7 +35,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 id: pip-cache with: path: ~/.cache/pip @@ -60,7 +60,7 @@ jobs: id: npm-cache-dir run: echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 id: npm-cache with: path: ${{ steps.npm-cache-dir.outputs.dir }} @@ -143,7 +143,7 @@ jobs: sudo apt-get update sudo apt-get install virtualenv libsasl2-dev python-dev libldap2-dev libssl-dev - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 id: pip-cache with: path: ~/.cache/pip @@ -166,7 +166,7 @@ jobs: id: npm-cache-dir run: echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 id: npm-cache with: path: ${{ steps.npm-cache-dir.outputs.dir }} @@ -217,7 +217,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 with: path: ~\AppData\Local\pip\Cache key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/requirements-test.txt') }}