diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 63c4183f5..e97c9a699 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: # Separate cache for build dir, we reuse it in release publish workflow - name: Cache build output - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: build-cache with: path: build diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13f2dc7cd..5e43e602e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: cache: 'npm' - name: Cache build output - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: build-cache with: path: build @@ -49,7 +49,7 @@ jobs: ${{ runner.os }}-build-${{ hashFiles('package.json', 'package-lock.json', 'public', 'src/**', '*.js', '*.ts') }} - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: cache with: path: ${{ github.workspace }}/.cache @@ -213,7 +213,7 @@ jobs: persist-credentials: false - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: cache with: path: ${{ github.workspace }}/.cache @@ -223,7 +223,7 @@ jobs: ${{ runner.os }}- - name: Cache build dir - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: build-cache with: path: build diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 46b4005ec..65974d1d6 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -15,7 +15,7 @@ jobs: cache: 'npm' - name: Cache test-build output - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: test-build-cache with: path: build @@ -24,7 +24,7 @@ jobs: test-build-${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json', 'public', 'src/**', '*.js', '*.ts') }} - name: Cache node_modules - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: test-npm-cache with: path: node_modules @@ -60,7 +60,7 @@ jobs: cache: 'npm' - name: Cache test-build output - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: test-build-cache with: path: build @@ -70,7 +70,7 @@ jobs: # We don't want to re-install dependencies for every sharded run - name: Cache node_modules - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: test-npm-cache with: path: node_modules @@ -82,7 +82,7 @@ jobs: run: npm ci --prefer-offline --no-audit --progress=false # Cache playwright binaries - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: playwright-cache with: path: | @@ -93,7 +93,7 @@ jobs: if: steps.playwright-cache.outputs.cache-hit != 'true' - name: Cache nyc_output dir - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: nyc_output-cache with: path: ./.nyc_output @@ -131,7 +131,7 @@ jobs: cache: 'npm' - name: Cache nyc_output dir - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 id: nyc_output-cache with: path: ./.nyc_output