diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index a5d6987..71970d8 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v2 - id: cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ./node_modules key: modules-${{ hashFiles('package-lock.json') }} @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v2 with: token: ${{ secrets.GH_TOKEN }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ./node_modules key: modules-${{ hashFiles('package-lock.json') }} @@ -56,7 +56,7 @@ jobs: - uses: actions/checkout@v2 - name: Prepare repository run: git fetch --unshallow --tags - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ./node_modules key: modules-${{ hashFiles('package-lock.json') }} @@ -88,7 +88,7 @@ jobs: - 6001:6379 steps: - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ./node_modules key: modules-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 91dc436..915bc2b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: node-version: 16.x - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules with: