Skip to content

Commit 146eb08

Browse files
authored
Merge the "chore/update-build-push-action-v7" branch into the "develop" branch
This merge updates the GitHub Actions workflows to use `docker/build-push-action@v7` instead of the current older major versions. It applies the version bump in both `.github/workflows/deployment.yml` and `.github/workflows/pr-tests.yml` while keeping the existing build, attestation, cache, and artifact logic unchanged. In `.github/workflows/deployment.yml`, the `Build and push (multi-registry, multi-platform)` step is updated from `uses: docker/build-push-action@v5` to `uses: docker/build-push-action@v7` without changing the existing `attests:`, tag, label, platform, or cache settings. In `.github/workflows/pr-tests.yml`, the `Build Image` step is updated from `uses: docker/build-push-action@v6` to `uses: docker/build-push-action@v7` without changing the existing OCI archive output, multi-platform build, tag, or cache configuration. No other files or workflow jobs are modified by this merge.
2 parents 574959c + 16be981 commit 146eb08

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
# Build the multi-platform container image and push it to both registries.
116116
# BuildKit is used to generate SBOM and provenance metadata.
117117
- name: Build and push (multi-registry, multi-platform)
118-
uses: docker/build-push-action@v5
118+
uses: docker/build-push-action@v7
119119
with:
120120
context: .
121121
push: true

.github/workflows/pr-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
# Build the Docker image and load it locally
6161
- name: Build Image
62-
uses: docker/build-push-action@v6
62+
uses: docker/build-push-action@v7
6363
with:
6464
context: .
6565
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)