From 77fd0d5cffb3d071efc246c92226735babb68fb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 21:06:13 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4.2.3 to 4.3.0 Bumps [actions/cache](https://github.com/actions/cache) from 4.2.3 to 4.3.0. - [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/5a3ec84eff668545956fd18022155c47e93e2684...0057852bfaa89a56745cba8c7296529d2fc39830) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/behat-test.yml | 2 +- .github/workflows/cypress-e2e-parallelization.yml | 4 ++-- .github/workflows/newman.yml | 2 +- .github/workflows/open-tickets.yml | 2 +- .github/workflows/package.yml | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/behat-test.yml b/.github/workflows/behat-test.yml index 58ba0562b1..6bac045594 100644 --- a/.github/workflows/behat-test.yml +++ b/.github/workflows/behat-test.yml @@ -125,7 +125,7 @@ jobs: - name: Restore standard slim image from cache id: cache-docker-slim - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 + uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 continue-on-error: true timeout-minutes: 6 with: diff --git a/.github/workflows/cypress-e2e-parallelization.yml b/.github/workflows/cypress-e2e-parallelization.yml index afdec00f84..0c2939e5a9 100644 --- a/.github/workflows/cypress-e2e-parallelization.yml +++ b/.github/workflows/cypress-e2e-parallelization.yml @@ -123,7 +123,7 @@ jobs: - name: Restore packages if: "${{ inputs.package_cache_key != '' && inputs.package_directory != '' && contains(matrix.feature, 'platform-') }}" - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 + uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: ./*.${{ contains(inputs.os, 'alma') && 'rpm' || 'deb' }} key: ${{ inputs.package_cache_key }} @@ -145,7 +145,7 @@ jobs: - name: Restore standard slim image from cache id: cache-docker-slim - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 + uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 continue-on-error: true timeout-minutes: 6 with: diff --git a/.github/workflows/newman.yml b/.github/workflows/newman.yml index fc820a51bf..693ccf9ce2 100644 --- a/.github/workflows/newman.yml +++ b/.github/workflows/newman.yml @@ -417,7 +417,7 @@ jobs: - name: Restore standard slim image from cache id: cache-docker-slim - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 + uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 continue-on-error: true timeout-minutes: 6 with: diff --git a/.github/workflows/open-tickets.yml b/.github/workflows/open-tickets.yml index 03ed35e97f..a1ce2a389b 100644 --- a/.github/workflows/open-tickets.yml +++ b/.github/workflows/open-tickets.yml @@ -249,7 +249,7 @@ jobs: shell: bash - name: Restore ${{ steps.matrix_include.outputs.package_extension }} files - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 + uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: ./*.${{ steps.matrix_include.outputs.package_extension }} key: ${{ github.sha }}-${{ github.run_id }}-${{ steps.matrix_include.outputs.package_extension }}-${{ steps.matrix_include.outputs.distrib }} diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 58ddf22c1b..93805b9fb4 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -126,7 +126,7 @@ jobs: cache_key: unsigned-${{ inputs.cache_key }} - if: ${{ inputs.package_extension == 'deb' }} - uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 + uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: ./*.${{ inputs.package_extension }} key: ${{ inputs.cache_key }} @@ -150,7 +150,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 + - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: ./*.${{ inputs.package_extension }} key: unsigned-${{ inputs.cache_key }} @@ -161,7 +161,7 @@ jobs: - run: rpmsign --addsign ./*.${{ inputs.package_extension }} shell: bash - - uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 + - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: ./*.${{ inputs.package_extension }} key: ${{ inputs.cache_key }}