Use shrinkwrap for package locking (#8298)

This commit is contained in:
Tommaso Sciortino
2025-09-12 13:26:55 -07:00
committed by GitHub
parent c15774ce68
commit 21826010ef
8 changed files with 10 additions and 8 deletions

2
.github/CODEOWNERS vendored
View File

@@ -4,7 +4,7 @@
# Require reviews from the release approvers for critical files.
# These patterns override the rule above.
/package.json @google-gemini/gemini-cli-askmode-approvers
/package-lock.json @google-gemini/gemini-cli-askmode-approvers
/npm-shrinkwrap.json @google-gemini/gemini-cli-askmode-approvers
/GEMINI.md @google-gemini/gemini-cli-askmode-approvers
/SECURITY.md @google-gemini/gemini-cli-askmode-approvers
/LICENSE @google-gemini/gemini-cli-askmode-approvers

View File

@@ -165,7 +165,7 @@ jobs:
BRANCH_NAME: '${{ steps.release_branch.outputs.BRANCH_NAME }}'
DRY_RUN: '${{ github.event.inputs.dry_run }}'
run: |-
git add package.json package-lock.json packages/*/package.json
git add package.json npm-shrinkwrap.json packages/*/package.json
git commit -m "chore(release): bump version to ${{ needs.calculate-versions.outputs.NEXT_NIGHTLY_VERSION }}"
if [[ "${DRY_RUN}" == "false" ]]; then
echo "Pushing release branch to remote..."