From 33638b1c0c50f24f37b2174197a66845efc0a113 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 15:37:03 +0000 Subject: [PATCH] Bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [actions/cache](https://github.com/actions/cache), [docker/login-action](https://github.com/docker/login-action), [docker/build-push-action](https://github.com/docker/build-push-action) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/cache` from 5.0.4 to 5.0.5 - [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/668228422ae6a00e4ad889ee87cd7109ec5666a7...27d5ce7f107fe9357f9df03efb73ab90386fccae) Updates `docker/login-action` from 4.0.0 to 4.1.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/b45d80f862d83dbcd57f89517bcf500b2ab88fb2...4907a6ddec9925e35a0a9e82d7399ccc52663121) Updates `docker/build-push-action` from 7.0.0 to 7.1.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/d08e5c354a6adb9ed34480a06d141179aa583294...bcafcacb16a39f128d818304e6c9c0c18556b85f) Updates `actions/upload-artifact` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/bbbca2ddaa5d8feaa63e36b76fdaad77386f024f...043fb46d1a93c77aae656e7c1c64a875d1fc6a0a) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: docker/login-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/bot-cache.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test-integration.yml | 2 +- .github/workflows/tests-reusable.yml | 18 +++++++++--------- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/bot-cache.yml b/.github/workflows/bot-cache.yml index 9f4fb7b79..85d024acb 100644 --- a/.github/workflows/bot-cache.yml +++ b/.github/workflows/bot-cache.yml @@ -34,7 +34,7 @@ jobs: - name: run cache if: success() && ! env.CI_SKIP - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: cf-graph.tar.zstd key: cf-graph-tzstd-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cfa1e9c88..e50d4c0af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,7 +57,7 @@ jobs: echo "NEXT=${NEXT}" >> "$GITHUB_OUTPUT" - name: log into ghcr.io - uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 + uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 if: ${{ ! env.CI_SKIP }} with: registry: ${{ env.REGISTRY }} @@ -77,7 +77,7 @@ jobs: type=raw,value=latest - name: build and push image - uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0 + uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0 if: ${{ ! env.CI_SKIP }} with: context: . diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 729a737db..530a44dbb 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -99,7 +99,7 @@ jobs: submodules: 'true' - name: Build Docker Image - uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0 + uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0 if: ${{ steps.should-run.outputs.should-run == 'true' }} with: context: cf-scripts diff --git a/.github/workflows/tests-reusable.yml b/.github/workflows/tests-reusable.yml index 077455306..52f5813d3 100644 --- a/.github/workflows/tests-reusable.yml +++ b/.github/workflows/tests-reusable.yml @@ -123,7 +123,7 @@ jobs: if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} - name: build docker image - uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0 + uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0 if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} with: context: . @@ -132,7 +132,7 @@ jobs: tags: ${{ env.IMAGE_NAME }}:test - name: restore test durations - uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} with: path: .test_durations @@ -178,7 +178,7 @@ jobs: BOT_TOKEN: ${{ secrets.BOT_TOKEN }} - name: upload test durations - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} with: name: test-durations-${{ matrix.group }} @@ -186,7 +186,7 @@ jobs: include-hidden-files: true - name: upload coverage - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} with: name: coverage-${{ matrix.group }} @@ -294,7 +294,7 @@ jobs: MONGODB_CONNECTION_STRING: "mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000" - name: restore test durations - uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} with: path: .test_durations @@ -333,7 +333,7 @@ jobs: BOT_TOKEN: ${{ secrets.BOT_TOKEN }} - name: upload test durations - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} with: name: test-durations-mongodb @@ -341,7 +341,7 @@ jobs: include-hidden-files: true - name: upload coverage - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} with: name: coverage-mongodb @@ -408,7 +408,7 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} - name: cache test durations - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} with: path: .test_durations @@ -430,7 +430,7 @@ jobs: jq 'reduce inputs as $i (.; . + $i)' test-durations-*/.test_durations.* > .test_durations - name: upload test durations - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: ${{ inputs.skip != 'true' && !env.CI_SKIP }} with: name: test-durations