Skip to content

Autoupdate Dependencies #591

Autoupdate Dependencies

Autoupdate Dependencies #591

Workflow file for this run

name: Autoupdate Dependencies
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '21 9 * * *'
workflow_dispatch:
inputs: {}
jobs:
ruby-bundle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
- name: Set up Ruby
uses: ruby/setup-ruby@b818bea8cf015031920150a891dbdd4105cc7e47
with:
ruby-version: '2.7'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run auto dependency update
uses: romoh/dependencies-autoupdate@7b9baa46f909a5dc8562d1357055bd55aca4577c
with:
token: ${{ secrets.GITHUB_TOKEN }}
update-command: bundle lock --update
update-path: .