From 0fbc6735fd08c816b813ca87d8777c57cb48c559 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 11:56:32 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3.3.1 to 3.3.2 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.1 to 3.3.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/v3.3.1...v3.3.2) --- 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 | 4 ++-- .github/workflows/ci.yml | 6 +++--- .github/workflows/eslint.yml | 2 +- .github/workflows/node-test.yml | 2 +- .github/workflows/test-e2e.yml | 14 +++++++------- .github/workflows/test-storybook.yml | 2 +- .github/workflows/test-unit.yml | 2 +- .github/workflows/typecheck.yml | 2 +- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cef791ff..0029d01d6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: node-version: 18.14.0 - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache @@ -29,7 +29,7 @@ jobs: # Separate cache for build dir, we reuse it in release publish workflow - name: Cache build output if: startsWith(github.ref, 'refs/tags/v') - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: build-cache with: path: build diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5069ff7f..ad211d114 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: path: build - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache @@ -178,7 +178,7 @@ jobs: persist-credentials: false - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache @@ -188,7 +188,7 @@ jobs: ${{ runner.os }}- - name: Cache build dir - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: build-cache with: path: build diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 9380b42ea..f08af0df7 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -14,7 +14,7 @@ jobs: node-version: 18.14.0 - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache diff --git a/.github/workflows/node-test.yml b/.github/workflows/node-test.yml index 3dde9eeeb..8fda0d137 100644 --- a/.github/workflows/node-test.yml +++ b/.github/workflows/node-test.yml @@ -54,7 +54,7 @@ jobs: echo "version=$(node --version)" >> $GITHUB_OUTPUT - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index aba60de79..aed43f201 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -14,7 +14,7 @@ jobs: node-version: 18.14.0 - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache @@ -27,7 +27,7 @@ jobs: run: npm ci --prefer-offline --no-audit --progress=false --cache ${{ github.workspace }}/.cache/npm - name: Cache test-build output - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: test-build-cache with: path: build @@ -58,7 +58,7 @@ jobs: node-version: 18.14.0 - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache @@ -74,7 +74,7 @@ jobs: run: npx playwright install --with-deps - name: Cache test-build output - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: test-build-cache with: path: build @@ -88,7 +88,7 @@ jobs: run: npm run test:build - name: Cache nyc_output dir - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: nyc_output-cache with: path: ./.nyc_output @@ -117,7 +117,7 @@ jobs: node-version: 18.14.0 - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache @@ -131,7 +131,7 @@ jobs: run: npm ci --prefer-offline --no-audit --progress=false --cache ${{ github.workspace }}/.cache/npm - name: Cache nyc_output dir - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: nyc_output-cache with: path: ./.nyc_output diff --git a/.github/workflows/test-storybook.yml b/.github/workflows/test-storybook.yml index 3076a0503..be2b2ae71 100644 --- a/.github/workflows/test-storybook.yml +++ b/.github/workflows/test-storybook.yml @@ -15,7 +15,7 @@ jobs: node-version: 18.14.0 - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 3fa75cbea..bbd9999b2 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -14,7 +14,7 @@ jobs: node-version: 18.14.0 - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml index 5a35b3470..cb8bd4873 100644 --- a/.github/workflows/typecheck.yml +++ b/.github/workflows/typecheck.yml @@ -15,7 +15,7 @@ jobs: node-version: 18.14.0 - name: Cache bigger downloads - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 id: cache with: path: ${{ github.workspace }}/.cache