This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
upgrade-dependencies #285
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: upgrade-dependencies | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
upgrade-deps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-node@main | |
with: | |
node-version: 20 | |
- name: Cache node modules | |
uses: actions/cache@main | |
env: | |
cache-name: cache-node-${{ matrix.node }}-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Setup Git | |
run: | | |
git config --local user.name "github-actions[bot]" | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local pull.rebase true | |
# work around "insufficient permission for adding an object to repository database .git/object" issue | |
sudo chmod -R ugo+rwX .git | |
- name: Check for updates | |
id: check-updates | |
run: | | |
set -ex | |
npm ci &> /dev/null | |
npx ncu | |
npm i &> /dev/null | |
npm audit fix --quiet --no-progress --no-fund || true | |
npm run fix &> /dev/null || true | |
git add -u | |
git update-index --refresh | |
if ! git diff-index --quiet HEAD --; then | |
echo "is-changed=1" >> $GITHUB_OUTPUT | |
fi | |
- name: Create a PR | |
if: steps.check-updates.outputs.is-changed | |
id: create-pr | |
run: | | |
npm version patch | |
PKG_VERSION="$(node -e 'process.stdout.write(require("./package.json").version)')" | |
REMOTE_REPO="https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" | |
CURRENT_BRANCH="$(git branch --show-current)" | |
NEW_BRANCH="v${PKG_VERSION}" | |
if git ls-remote --exit-code --heads "${REMOTE_REPO}" "${NEW_BRANCH}" > /dev/null; then | |
# PR already exists | |
exit 0 | |
fi | |
git commit -a -m "${PKG_VERSION}" --no-verify | |
git pull "${REMOTE_REPO}" "${CURRENT_BRANCH}" | |
git checkout -b "${NEW_BRANCH}" | |
git push "${REMOTE_REPO}" "HEAD:${NEW_BRANCH}" | |
PR_URL=$(gh pr create -B "${CURRENT_BRANCH}" -H "${NEW_BRANCH}" -f) | |
echo "pr-url=${PR_URL}" >> $GITHUB_OUTPUT | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Approve and merge the PR | |
if: steps.create-pr.outputs.pr-url | |
run: | | |
gh pr review --approve "${PR_URL}" | |
gh pr merge --auto --delete-branch --rebase "${PR_URL}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | |
PR_URL: ${{ steps.create-pr.outputs.pr-url }} |