diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e6474650..b47147d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 + - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 1a5d9911..b3a0ad3c 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -20,7 +20,7 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: vendor/bundle key: ${{ runner.os }}-changelog-gem diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index db84faff..3d18a04c 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -19,7 +19,7 @@ jobs: with: node-version: "12" - - uses: actions/cache@v2.1.4 + - uses: actions/cache@v3.2.6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release-semantic.yml b/.github/workflows/release-semantic.yml index 9459b0fc..71bf110d 100644 --- a/.github/workflows/release-semantic.yml +++ b/.github/workflows/release-semantic.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v2 - - uses: actions/cache@v1 + - uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}