From 0c4c9ab59204f062af1ab79871389d9a3da52d93 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Sat, 22 Jun 2024 06:05:06 -0700 Subject: [PATCH] fix: usage of `deprecated` version of `Node.js` (#8201) --- .github/workflows/validation.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index a246e3566..4362f6564 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -30,7 +30,7 @@ jobs: shell: bash run: | echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -58,7 +58,7 @@ jobs: shell: bash run: | echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -97,7 +97,7 @@ jobs: shell: bash run: | echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: runner.os != 'Windows' with: path: ${{ steps.npm-cache.outputs.dir }} @@ -170,7 +170,7 @@ jobs: shell: bash run: | echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}