Dependencies autoupdate #56
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: Dependencies autoupdate | |
on: | |
workflow_dispatch: # can be manually run if needed | |
schedule: | |
- cron: '0 0 1 * *' # run on first day of each month at 12:00 am UTC time | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
auto-update-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the head commit of the branch | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Install Linux requirements | |
run: | | |
apt_dependencies="git curl libssl-dev pkg-config libudev-dev libv4l-dev" | |
echo "Run apt update and apt install the following dependencies: $apt_dependencies" | |
sudo apt update | |
sudo apt install -y $apt_dependencies | |
cargo install cargo-edit | |
- name: Check for dependency updates | |
uses: romoh/[email protected] | |
with: | |
token: ${{ secrets.AKRI_BOT_TOKEN }} | |
update-command: "'cargo update && cargo test'" | |
on-changes-command: "'./version.sh -u -p'" |