Skip to content

Merge pull request #76 from hebertcisco/dependabot/npm_and_yarn/examp… #10

Merge pull request #76 from hebertcisco/dependabot/npm_and_yarn/examp…

Merge pull request #76 from hebertcisco/dependabot/npm_and_yarn/examp… #10

Workflow file for this run

name: 📝 Update Lock
on:
push:
branches:
- 'main'
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
jobs:
update-lock:
runs-on: ubuntu-latest
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v3
- name: 🚀 Setup Node 16.x
uses: actions/setup-node@v3.6.0
with:
node-version: 16.x
- name: 📥 Install Dependencies
run: npm ci
- name: 📤 Update package-lock.json
run: npm update --package-lock-only
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: '🔧 chore: Updated package-lock.json'
file_pattern: package-lock.json
commit_user_name: github-actions[bot]
commit_user_email: 41898282+github-actions[bot]@users.noreply.github.com