From 7073a65420a468d01e43e78275f316ad980870bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 16:38:49 -0500 Subject: [PATCH] chore(deps): bump actions/cache from 4.0.2 to 4.1.2 (#5996) * chore(deps): bump actions/cache from 4.0.2 to 4.1.2 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.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/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9...6849a6489940f00c2f30c0fb92c6274307ccb58a) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * update comments --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Emma Sauerborn --- ...reusable-build-system-test-react-native.yml | 4 ++-- .../workflows/reusable-build-system-test.yml | 4 ++-- .github/workflows/reusable-e2e.yml | 18 +++++++++--------- .github/workflows/reusable-setup-cache.yml | 10 +++++----- .github/workflows/reusable-unit.yml | 6 +++--- 5 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/reusable-build-system-test-react-native.yml b/.github/workflows/reusable-build-system-test-react-native.yml index 00aa55b54bd..73d8e064afe 100644 --- a/.github/workflows/reusable-build-system-test-react-native.yml +++ b/.github/workflows/reusable-build-system-test-react-native.yml @@ -50,7 +50,7 @@ jobs: - name: Restore CocoaPods cache if: ${{ matrix.platform == 'ios' }} id: restore-cocoapods-cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 with: path: ./examples/react-native/ios/Pods key: ${{ runner.os }}-cocoapods-${{ inputs.commit }} @@ -59,7 +59,7 @@ jobs: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 - name: Restore node_modules cache if: ${{ matrix.platform == 'ios' }} - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-cache with: path: | diff --git a/.github/workflows/reusable-build-system-test.yml b/.github/workflows/reusable-build-system-test.yml index e32ac3c7dba..ee703d3f2b9 100644 --- a/.github/workflows/reusable-build-system-test.yml +++ b/.github/workflows/reusable-build-system-test.yml @@ -123,7 +123,7 @@ jobs: - name: Delete AWS Profile run: rm -rf ~/.aws - name: Restore cypress runner from Cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-cypress-cache with: path: ~/.cache/Cypress @@ -146,7 +146,7 @@ jobs: # step, so we go ahead and update the cache entry. - name: Cache cypress runner if: steps.restore-cypress-cache.outputs.cache-hit != 'true' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 with: path: ~/.cache/Cypress key: ${{ runner.os }}-canary-cypress-${{ hashFiles('build-system-tests/e2e/yarn.lock') }} diff --git a/.github/workflows/reusable-e2e.yml b/.github/workflows/reusable-e2e.yml index fe21fa3bbcb..a316cc23111 100644 --- a/.github/workflows/reusable-e2e.yml +++ b/.github/workflows/reusable-e2e.yml @@ -91,7 +91,7 @@ jobs: persist-credentials: false - name: Next.js Cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 with: path: ${{ github.workspace }}/.next/cache key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }} @@ -107,7 +107,7 @@ jobs: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 - name: Restore cypress runner Cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-cypress-cache with: path: ~/.cache/Cypress @@ -116,7 +116,7 @@ jobs: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 - name: Restore node_modules cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-cache with: path: | @@ -127,7 +127,7 @@ jobs: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3 - name: Restore ui/dist cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-ui-cache with: path: ./packages/ui/dist @@ -135,7 +135,7 @@ jobs: - name: Restore ${{ matrix.package }}/dist cache id: restore-package-cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 with: path: ./packages/${{ matrix.package }}/dist key: ${{ runner.os }}-${{ matrix.package }}-${{ inputs.commit }} @@ -394,7 +394,7 @@ jobs: - name: Restore CocoaPods cache id: restore-cocoapods-cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 with: path: ./examples/react-native/ios/Pods key: ${{ runner.os }}-cocoapods-${{ inputs.commit }} @@ -652,7 +652,7 @@ jobs: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 - name: Restore cypress runner Cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-cypress-cache with: path: ~/.cache/Cypress @@ -661,7 +661,7 @@ jobs: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 - name: Restore Puppeteer runner cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-puppeteer-cache with: path: ~/.cache/puppeteer @@ -670,7 +670,7 @@ jobs: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 - name: Restore node_modules cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-cache with: path: | diff --git a/.github/workflows/reusable-setup-cache.yml b/.github/workflows/reusable-setup-cache.yml index 216c3f2541d..11e49cf03e8 100644 --- a/.github/workflows/reusable-setup-cache.yml +++ b/.github/workflows/reusable-setup-cache.yml @@ -30,7 +30,7 @@ jobs: env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 - name: Restore cypress runner from Cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-cypress-cache with: path: ~/.cache/Cypress @@ -38,7 +38,7 @@ jobs: env: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 - name: Restore Puppeteer runner from Cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-puppeteer-cache with: path: ~/.cache/puppeteer @@ -55,17 +55,17 @@ jobs: - name: Cache cypress runner # create new cypress cache entry only if cypress cache missed and we installed a new one. if: steps.restore-cypress-cache.outputs.cache-hit != 'true' - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 with: path: ~/.cache/Cypress key: ${{ runner.os }}-cypress-${{ hashFiles('yarn.lock') }} - name: Cache packages/ui/dist - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 with: path: ./packages/ui/dist key: ${{ runner.os }}-ui-${{ inputs.commit }} - name: Cache node_modules - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 with: path: | ./node_modules diff --git a/.github/workflows/reusable-unit.yml b/.github/workflows/reusable-unit.yml index 2b74b541dfe..6d767d6f0e8 100644 --- a/.github/workflows/reusable-unit.yml +++ b/.github/workflows/reusable-unit.yml @@ -54,7 +54,7 @@ jobs: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 2 - name: Restore node_modules cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-cache with: path: | @@ -65,7 +65,7 @@ jobs: SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3 - name: Restore ui/dist cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 id: restore-ui-cache with: path: ./packages/ui/dist @@ -154,7 +154,7 @@ jobs: run: yarn ${{ matrix.package }} size - name: Cache ${{ matrix.package }}/dist - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 https://github.com/actions/cache/commit/0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 with: path: ./packages/${{ matrix.package }}/dist key: ${{ runner.os }}-${{ matrix.package }}-${{ inputs.commit }}