Skip to content

Update jackson to v2.16.1 #18

Update jackson to v2.16.1

Update jackson to v2.16.1 #18

Workflow file for this run

name: Update Dev Branch
on:
push:
branches: [ master ]
permissions:
contents: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Git User
run: |
git config user.name "GitHub Action"
git config user.email "[email protected]"
- name: Update Dev Branch
run: |
git checkout master
git fetch origin
git checkout dev
git pull
git merge origin/master
git push origin dev