diff --git a/.github/workflows/check-toc.yml b/.github/workflows/check-toc.yml index 30d2765b..a841ac20 100644 --- a/.github/workflows/check-toc.yml +++ b/.github/workflows/check-toc.yml @@ -35,19 +35,6 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - - name: Get week number for use in cache key - id: get-date - run: | - echo "::set-output name=week-number::$(date --utc '+%V')" - - - name: Load dependencies cache - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-markdown-toc-${{ steps.get-date.outputs.week-number }} - restore-keys: | - ${{ runner.os }}-node-markdown-toc- - - name: Install markdown-toc run: sudo npm install --global markdown-toc diff --git a/.github/workflows/check-workflows.yml b/.github/workflows/check-workflows.yml index d6646c9b..b15b1d13 100644 --- a/.github/workflows/check-workflows.yml +++ b/.github/workflows/check-workflows.yml @@ -33,19 +33,6 @@ jobs: location: ${{ runner.temp }}/github-workflow-schema file-name: github-workflow.json - - name: Get week number for use in cache key - id: get-date - run: | - echo "::set-output name=week-number::$(date --utc '+%V')" - - - name: Load dependencies cache - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-ajv-cli-${{ steps.get-date.outputs.week-number }} - restore-keys: | - ${{ runner.os }}-node-ajv-cli- - - name: Install JSON schema validator run: sudo npm install --global ajv-cli