From 80bd40e38f406b6e02aed4c5796095329d17f350 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 07:03:58 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4.0.1 to 4.0.2 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.1 to 4.0.2. - [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/ab5e6d0c87105b4c9c2047343972218f562e4319...0c45773b623bea8c8e75f6c82b208c3cf94ea4f9) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/deploy-main.yml | 2 +- .github/workflows/deploy-preview.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 8 ++++---- .github/workflows/test.yml | 4 ++-- .github/workflows/vrt.yml | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26a6940..6a33c04 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: node-version: '18' # @see https://www.voorhoede.nl/en/blog/super-fast-npm-install-on-github-actions/ - - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 id: cache with: path: ./node_modules diff --git a/.github/workflows/deploy-main.yml b/.github/workflows/deploy-main.yml index 7555639..43c0510 100644 --- a/.github/workflows/deploy-main.yml +++ b/.github/workflows/deploy-main.yml @@ -29,7 +29,7 @@ jobs: node-version: '18' # @see https://www.voorhoede.nl/en/blog/super-fast-npm-install-on-github-actions/ - - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 id: cache with: path: ./node_modules diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 5ca6466..0df01b3 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -29,7 +29,7 @@ jobs: node-version: '18' # @see https://www.voorhoede.nl/en/blog/super-fast-npm-install-on-github-actions/ - - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 id: cache with: path: ./node_modules diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 786a409..32ee562 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -29,7 +29,7 @@ jobs: node-version: '18' # @see https://www.voorhoede.nl/en/blog/super-fast-npm-install-on-github-actions/ - - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 id: cache with: path: ./node_modules diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index adf8c4b..64e9c9b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: node-version: '18' # @see https://www.voorhoede.nl/en/blog/super-fast-npm-install-on-github-actions/ - - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 id: cache with: path: ./node_modules @@ -58,7 +58,7 @@ jobs: - name: Cache Playwright Browsers for Playwright's Version id: cache-playwright-browsers - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ~/.cache/ms-playwright key: playwright-browsers-${{ env.PLAYWRIGHT_VERSION }} @@ -85,7 +85,7 @@ jobs: # node-version: '18' # # # @see https://www.voorhoede.nl/en/blog/super-fast-npm-install-on-github-actions/ -# - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 +# - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 # id: cache # with: # path: ./node_modules @@ -132,7 +132,7 @@ jobs: node-version: '18' # @see https://www.voorhoede.nl/en/blog/super-fast-npm-install-on-github-actions/ - - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 id: cache with: path: ./node_modules diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82c26fb..6154c34 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: node-version: '18' # @see https://www.voorhoede.nl/en/blog/super-fast-npm-install-on-github-actions/ - - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 id: cache with: path: ./node_modules @@ -53,7 +53,7 @@ jobs: - name: Cache Playwright Browsers for Playwright's Version id: cache-playwright-browsers - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: path: ~/.cache/ms-playwright key: playwright-browsers-${{ env.PLAYWRIGHT_VERSION }} diff --git a/.github/workflows/vrt.yml b/.github/workflows/vrt.yml index d149c2d..12076e1 100644 --- a/.github/workflows/vrt.yml +++ b/.github/workflows/vrt.yml @@ -31,7 +31,7 @@ jobs: node-version: '18' # @see https://www.voorhoede.nl/en/blog/super-fast-npm-install-on-github-actions/ - - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 + - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 id: cache with: path: ./node_modules