Update version #772
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
name: "Update version" | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
name: Update dependencies | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: update versions | |
run: | | |
bash update_dependencies.sh | |
- name: Set up configuration | |
run: | | |
git config --global user.email github-actions@github.com | |
git config --global user.name github-actions | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
labels: include | |
token: ${{secrets.ACTION_API_TOKEN}} | |
commit-message: "update dependencies" | |
delete-branch: true | |
title: "update dependencies" | |
body: | | |
- This PR contains changes from upstream repositories | |
Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |