diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 797f8ec9a..ceb0c53b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: 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') }} diff --git a/.github/workflows/scip-docker.yml b/.github/workflows/scip-docker.yml index dfb630431..71a7bacdf 100644 --- a/.github/workflows/scip-docker.yml +++ b/.github/workflows/scip-docker.yml @@ -17,7 +17,7 @@ jobs: - name: Install asdf. uses: asdf-vm/actions/setup@v2.1.0 - name: Cache asdf and asdf-managed tools. - uses: actions/cache@v3.3.1 + uses: actions/cache@v4.2.0 id: asdf-cache with: path: ${{ env.ASDF_DIR }} @@ -28,7 +28,7 @@ jobs: - name: Get npm cache directory id: npm-cache 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') }} diff --git a/.github/workflows/scip-snapshot.yml b/.github/workflows/scip-snapshot.yml index fd94d42ef..31de22b2a 100644 --- a/.github/workflows/scip-snapshot.yml +++ b/.github/workflows/scip-snapshot.yml @@ -16,7 +16,7 @@ jobs: - name: Install asdf. uses: asdf-vm/actions/setup@v2.1.0 - name: Cache asdf and asdf-managed tools. - uses: actions/cache@v3.3.1 + uses: actions/cache@v4.2.0 id: asdf-cache with: path: ${{ env.ASDF_DIR }} @@ -27,7 +27,7 @@ jobs: - name: Get npm cache directory id: npm-cache 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') }} diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 17d073c69..c7c23a80a 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -28,7 +28,7 @@ jobs: id: npm-cache run: | echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -55,7 +55,7 @@ jobs: id: npm-cache run: | echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -93,7 +93,7 @@ jobs: id: npm-cache run: | echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: runner.os != 'Windows' with: path: ${{ steps.npm-cache.outputs.dir }} @@ -123,7 +123,7 @@ jobs: id: npm-cache run: | echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}