Update #987
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
--- | |
jobs: | |
update: | |
name: Update | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install packages | |
run: | | |
sudo apt update | |
sudo apt install -y -o Acquire::Retries=50 \ | |
build-essential gcc-aarch64-linux-gnu \ | |
git iasl lzma-dev mtools perl python \ | |
subversion uuid-dev zip unzip | |
- name: Sources (git) | |
run: | | |
make submodules | |
- name: Update dependencies | |
run: | | |
make update | |
- name: Create pull request | |
uses: peter-evans/[email protected] | |
with: | |
committer: GitHub <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
body: | | |
Update dependencies by bumping them to the latest version | |
branch: update-dependencies | |
commit-message: 'dependencies: bump to latest version' | |
delete-branch: true | |
draft: false | |
labels: | | |
security | |
signoff: false | |
title: 'dependencies: Update dependencies to latest version' | |
token: ${{ secrets.REPO_SCOPED_TOKEN }} | |
name: Update | |
on: | |
schedule: | |
- cron: 0 2 * * * |