mirror of
https://github.com/pnpm/pnpm.git
synced 2026-07-14 17:52:44 -04:00
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [pnpm/setup](https://github.com/pnpm/setup), [bencherdev/bencher](https://github.com/bencherdev/bencher) and [taiki-e/install-action](https://github.com/taiki-e/install-action). Updates `actions/checkout` from 6.0.2 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6.0.2...9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0) Updates `pnpm/setup` from b1cac37306e39c21283b9dd6cb0ac288fb35ba6b to 77cf06832101b3ac8c65caaf76a21643936d07a4 - [Release notes](https://github.com/pnpm/setup/releases) - [Commits](b1cac37306...77cf068321) Updates `bencherdev/bencher` from 0.6.6 to 0.6.7 - [Release notes](https://github.com/bencherdev/bencher/releases) - [Commits](50fb1e1386...ec56bb69a7) Updates `taiki-e/install-action` from 2.81.8 to 2.82.0 - [Release notes](https://github.com/taiki-e/install-action/releases) - [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md) - [Commits](0631aa6515...b8cecb8356) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: bencherdev/bencher dependency-version: 0.6.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: pnpm/setup dependency-version: 77cf06832101b3ac8c65caaf76a21643936d07a4 dependency-type: direct:production dependency-group: github-actions - dependency-name: taiki-e/install-action dependency-version: 2.82.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
119 lines
4.7 KiB
YAML
119 lines
4.7 KiB
YAML
name: Update Lockfile
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 6 * * *' # Daily at 6 AM UTC
|
|
workflow_dispatch: {} # Allow manual triggering
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
# Serialize runs so a manual dispatch and the daily schedule can't reset and
|
|
# force-push the chore/update-lockfile branch at the same time.
|
|
concurrency:
|
|
group: update-lockfile
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
update-lockfile:
|
|
if: github.repository == 'pnpm/pnpm' # Only run on the main repository, not forks
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Commit
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
# Don't persist the write-scoped token in .git/config. The full install
|
|
# below runs third-party lifecycle scripts from freshly-bumped
|
|
# dependencies; the token is only needed to push, which the "Commit and
|
|
# push" step does with an explicit, single-use remote URL.
|
|
persist-credentials: false
|
|
|
|
# The job regenerates the lockfile and runs the meta-updater itself, so the
|
|
# action's auto-install would just be wasted work.
|
|
- name: Install pnpm
|
|
uses: pnpm/setup@77cf06832101b3ac8c65caaf76a21643936d07a4
|
|
with:
|
|
install: false
|
|
|
|
# Build the day's changes on a single, persistent branch based on the latest
|
|
# main on every run. main is fetched explicitly so the branch is correct even
|
|
# for a workflow_dispatch run triggered from another ref. If a PR from a
|
|
# previous day is still open, the force-push below replaces its contents with
|
|
# today's changes instead of opening a second PR.
|
|
- name: Prepare update branch
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
git fetch origin main
|
|
git checkout -B chore/update-lockfile FETCH_HEAD
|
|
|
|
- name: Update dependencies, Node.js, pnpm, and pacquet versions
|
|
timeout-minutes: 20
|
|
run: |
|
|
# Bump the pacquet config dependency to the latest release.
|
|
pnpm add --config @pnpm/pacquet
|
|
|
|
# Bump Node.js to the latest 26.x and record it in devEngines.runtime.
|
|
pnpm runtime set node 26
|
|
|
|
# Refresh the whole lockfile to the latest compatible dependency versions.
|
|
# Remove node_modules too so pnpm cannot reuse node_modules/.pnpm/lock.yaml
|
|
# as the missing wanted lockfile and skip resolution.
|
|
rm -rf node_modules pnpm-lock.yaml
|
|
pnpm install
|
|
|
|
# Propagate the new Node.js version into the GitHub Actions workflows,
|
|
# the `node@runtime:` scripts, and other manifests, then reinstall to
|
|
# sync the lockfile with any manifest changes.
|
|
pnpm update-manifests
|
|
|
|
# Bump pnpm itself last: this rewrites the `packageManager` and
|
|
# `devEngines.packageManager` pins, so doing it after the install steps
|
|
# keeps them running on the action-provided pnpm.
|
|
pnpm self-update latest
|
|
|
|
- name: Check for changes
|
|
id: changes
|
|
run: |
|
|
if [ -z "$(git status --porcelain)" ]; then
|
|
echo "changed=false" >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo "changed=true" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
- name: Commit and push
|
|
if: steps.changes.outputs.changed == 'true'
|
|
env:
|
|
GH_TOKEN: ${{ secrets.UPDATE_LOCKFILE_TOKEN }}
|
|
run: |
|
|
git add -A
|
|
git commit -m "chore: update lockfile, Node.js, pnpm, and pacquet versions"
|
|
git push -f "https://x-access-token:${GH_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" chore/update-lockfile
|
|
|
|
- name: Create PR if needed
|
|
if: steps.changes.outputs.changed == 'true'
|
|
env:
|
|
GH_TOKEN: ${{ secrets.UPDATE_LOCKFILE_TOKEN }}
|
|
run: |
|
|
BRANCH="chore/update-lockfile"
|
|
|
|
# An already-open PR from a previous day now points at the freshly
|
|
# force-pushed branch, so there is nothing more to do.
|
|
if [ -n "$(gh pr list --head "$BRANCH" --state open --json number --jq '.[].number')" ]; then
|
|
echo "PR already exists; today's changes were force-pushed to it"
|
|
else
|
|
gh pr create \
|
|
--title "chore: update lockfile, Node.js, pnpm, and pacquet versions" \
|
|
--body "This automated PR refreshes the project's pinned versions:
|
|
|
|
- Updates the lockfile to the latest compatible versions of dependencies.
|
|
- Bumps Node.js to the latest 26.x release, propagated into the CI, release, and benchmark workflows via the meta-updater.
|
|
- Bumps pnpm to the latest release (\`packageManager\` and \`devEngines.packageManager\`).
|
|
- Bumps the \`@pnpm/pacquet\` config dependency to its latest release.
|
|
|
|
Created by the update-lockfile workflow." \
|
|
--base main \
|
|
--head "$BRANCH"
|
|
fi
|