Updater #51
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: Updater | |
on: | |
schedule: | |
- cron: 33 3 * * 0 | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
updater: | |
name: Updater | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
bundler-cache: true | |
- name: Install binutils-aarch64-linux-gnu | |
run: sudo apt-get install -y --no-install-recommends binutils-aarch64-linux-gnu | |
- name: Run updater | |
run: bundle exec ruby bin/updater | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |