fix: New release also fixes CVE-2023-49462. #155
Workflow file for this run
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
--- | |
# This workflow automatically updates the CHANGELOG.md file. | |
name: Git Change Log | |
on: | |
push: | |
branches: | |
- '*' | |
- '**' | |
tags: | |
- '!*' # This excludes all tags | |
jobs: | |
GitChangeLog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Set up Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install Python Requirements | |
run: pip install gitchangelog pystache -r requirements.txt | |
- name: Update Change Log | |
run: git pull && make changelog | |
- name: Configure Git | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "CBDQ Bot Account" | |
- name: Git Add, Commit & Push | |
run: | | |
git status --porcelain | |
git status --porcelain CHANGELOG.md | grep -q '^.[MADRC]' || exit 0 | |
git add CHANGELOG.md | |
git commit -m 'chg: dev: Update change log.' | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} |