diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a325d69cf1..79f03e6f81 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,7 @@ jobs: id: yarn-cache run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', 'patches/*.patch') }} diff --git a/.github/workflows/preview-release.yml b/.github/workflows/preview-release.yml index 0eb576c8fb..91fbc877d4 100644 --- a/.github/workflows/preview-release.yml +++ b/.github/workflows/preview-release.yml @@ -58,7 +58,7 @@ jobs: id: yarn-cache run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', 'patches/*.patch') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d3187f5bb..84388b782b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: npm --version # Ensure latest npm is installed for trusted publishing (OIDC) - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', 'patches/*.patch') }}