diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 262dfb2ce..402f8c6f3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@master - name: cache package-lock.json - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: package-temp-dir key: lock-${{ github.sha }} @@ -27,7 +27,7 @@ jobs: - name: cache node_modules id: node_modules_cache_id - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} @@ -40,28 +40,28 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@master - name: restore cache from package-lock.json - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: package-temp-dir key: lock-${{ github.sha }} - name: restore cache from node_modules - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} - name: cache lib - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: lib key: lib-${{ github.sha }} - name: cache es - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: es key: es-${{ github.sha }} @@ -74,16 +74,16 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@master - name: restore cache from package-lock.json - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: package-temp-dir key: lock-${{ github.sha }} - name: restore cache from node_modules - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} @@ -96,12 +96,12 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@master # with: # token: ${{ secrets.ACCESS_TOKEN }} # - name: Checkout submodules - # uses: actions/checkout@v2 + # uses: actions/checkout@master # with: # repository: tangjinzhou/antdv-demo # token: ${{ secrets.ACCESS_TOKEN }} @@ -109,13 +109,13 @@ jobs: # submodules: true - name: restore cache from package-lock.json - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: package-temp-dir key: lock-${{ github.sha }} - name: restore cache from node_modules - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}