Skip to content

Commit 1f30b82

Browse files
authored
Merge the "release/v2.1.6+node25.8.2" branch into the "maintenance/v2+node25" branch
This merge promotes `release/v2.1.6+node25.8.2` into `maintenance/v2+node25`, marking the next patch release on the Node.js 25 maintenance line. It consolidates one deployment workflow update in `.github/workflows/deployment.yml` that grants the release job the OIDC permission needed for signed BuildKit attestations and switches the multi-platform build step to explicit `attests:` entries with `mode=max`. In the top-level `permissions:` block, the workflow now adds `id-token: write` so the job can mint the OIDC token required for attestation signing. In the `Build and push (multi-registry, multi-platform)` step, `provenance: true` is replaced with `attests:` entry `type=provenance,mode=max`, and `sbom: true` is replaced with `attests:` entry `type=sbom,mode=max`, leaving the rest of the build configuration unchanged. No migration steps are required beyond updating to `v2.1.6+node25.8.2` on the `maintenance/v2+node25` line.
2 parents 9907f2f + a3c538d commit 1f30b82

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/deployment.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ permissions:
3636
contents: read
3737
packages: write
3838
deployments: write
39+
id-token: write
3940

4041
# Global environment variables used across jobs.
4142
env:
@@ -121,8 +122,9 @@ jobs:
121122
platforms: linux/amd64,linux/arm64
122123
tags: ${{ steps.meta.outputs.tags }}
123124
labels: ${{ steps.meta.outputs.labels }}
124-
provenance: true
125-
sbom: true
125+
attests: |
126+
type=provenance,mode=max
127+
type=sbom,mode=max
126128
cache-from: type=gha
127129

128130
# Marking deployment as "success" if the workflow succeeds.

0 commit comments

Comments
 (0)