Skip to content

feat: bump @cspell/dict-pl_pl from 2.0.1 to 3.0.0 (#686) #417

feat: bump @cspell/dict-pl_pl from 2.0.1 to 3.0.0 (#686)

feat: bump @cspell/dict-pl_pl from 2.0.1 to 3.0.0 (#686) #417

name: " 🔗 Update Dependencies Main"
on:
push:
branches:
- main
paths:
- "**/package.json"
- "**/package-lock.json"
workflow_dispatch:
schedule:
- cron: "0 12 * * 0"
jobs:
update-dependencies:
if: github.repository_owner == 'streetsidesoftware'
runs-on: ubuntu-latest
env:
NEW_BRANCH: "update-dependencies-main"
REF_BRANCH: main
steps:
- name: Start
run: |
echo "${{ toJson(github.event.inputs) }}"
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ env.REF_BRANCH }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
cache: npm
- name: Update Root
run: |
npm i
npx npm-check-updates -t minor -u
rm -rf node_modules package-lock.json
- name: Install
run: npm install
- name: Update packages
run: |
npm run update-packages
- name: Build
run: |
npm run build
- name: PR
uses: ./.github/actions/pr
with:
commit-message: "ci: Workflow Bot -- Update ALL Dependencies"
branch: ${{ env.NEW_BRANCH }}
base: ${{ env.REF_BRANCH }}
app_id: ${{ secrets.AUTOMATION_APP_ID }}
app_private_key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}