From 46f6ab556a5aeac734adb7b0d300172462f4a8b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 16:52:53 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/check-modified-assets.yml | 4 ++-- .github/workflows/generate-zip.yml | 2 +- .github/workflows/js-css-md-linting.yml | 6 +++--- .github/workflows/php-coding-standards.yml | 2 +- .github/workflows/php-js-e2e-tests.yml | 8 ++++---- .github/workflows/playwright.yml | 4 ++-- .github/workflows/typescript-monitoring.yml | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/check-modified-assets.yml b/.github/workflows/check-modified-assets.yml index 723f7dd7def..256858ed6ed 100644 --- a/.github/workflows/check-modified-assets.yml +++ b/.github/workflows/check-modified-assets.yml @@ -13,7 +13,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: @@ -51,7 +51,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: diff --git a/.github/workflows/generate-zip.yml b/.github/workflows/generate-zip.yml index 586ff01b39e..98e2462baac 100644 --- a/.github/workflows/generate-zip.yml +++ b/.github/workflows/generate-zip.yml @@ -12,7 +12,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: diff --git a/.github/workflows/js-css-md-linting.yml b/.github/workflows/js-css-md-linting.yml index 75ca3655a89..47fc95b65d7 100644 --- a/.github/workflows/js-css-md-linting.yml +++ b/.github/workflows/js-css-md-linting.yml @@ -20,7 +20,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: @@ -47,7 +47,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: @@ -83,7 +83,7 @@ jobs: - uses: actions/checkout@v3 - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: diff --git a/.github/workflows/php-coding-standards.yml b/.github/workflows/php-coding-standards.yml index 082d1747725..fcc9c995aed 100644 --- a/.github/workflows/php-coding-standards.yml +++ b/.github/workflows/php-coding-standards.yml @@ -34,7 +34,7 @@ jobs: - name: Set up Composer caching - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-composer-dependencies with: diff --git a/.github/workflows/php-js-e2e-tests.yml b/.github/workflows/php-js-e2e-tests.yml index 572e222482b..43407c2a061 100644 --- a/.github/workflows/php-js-e2e-tests.yml +++ b/.github/workflows/php-js-e2e-tests.yml @@ -19,7 +19,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: @@ -47,7 +47,7 @@ jobs: run: | echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -99,7 +99,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: @@ -130,7 +130,7 @@ jobs: id: composer-cache run: | echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 90202ccab89..959424652fc 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -23,7 +23,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: @@ -54,7 +54,7 @@ jobs: id: composer-cache run: | echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/typescript-monitoring.yml b/.github/workflows/typescript-monitoring.yml index 7a997fd4f56..5bf4134d0d5 100644 --- a/.github/workflows/typescript-monitoring.yml +++ b/.github/workflows/typescript-monitoring.yml @@ -13,7 +13,7 @@ jobs: ref: 'trunk' - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: