Skip to content

[Snyk] Upgrade dayjs from 1.11.11 to 1.11.12 #11

[Snyk] Upgrade dayjs from 1.11.11 to 1.11.12

[Snyk] Upgrade dayjs from 1.11.11 to 1.11.12 #11

name: Update Dependencies on PR
on:
pull_request:
types: [opened, synchronize]
jobs:
update-dependencies:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Commit changes
run: |
git config --global user.name 'github-actions'
git config --global user.email 'github-actions@github.com'
if [ -n "$(git status --porcelain)" ]; then
git add package-lock.json
git commit -m "Update dependencies"
fi
- name: Pull latest changes from remote
run: |
git pull origin ${{ github.event.pull_request.head.ref }} --rebase
- name: Push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |

Check failure on line 42 in .github/workflows/update-fix-conflict.yml

View workflow run for this annotation

GitHub Actions / Update Dependencies on PR

Invalid workflow file

The workflow is not valid. .github/workflows/update-fix-conflict.yml (Line: 42, Col: 12): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
git push origin HEAD:${{ github.event.pull_request.head.ref }