Check for new Ruby releases in ruby-build #1843
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: Check for new Ruby releases in ruby-build | |
on: | |
schedule: | |
- cron: '0 7,19 * * *' | |
workflow_dispatch: | |
jobs: | |
check_new_releases: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.CHECK_NEW_RELEASES_TOKEN }} | |
- name: Clone setup-ruby | |
uses: actions/checkout@v4 | |
with: | |
repository: ruby/setup-ruby | |
path: setup-ruby | |
- name: Clone ruby-build | |
uses: actions/checkout@v4 | |
with: | |
repository: rbenv/ruby-build | |
path: ruby-build | |
- name: Install ruby-build | |
run: sudo ./ruby-build/install.sh | |
- name: List versions | |
run: ruby-build --definitions | |
- name: Setup git user | |
run: | | |
git config user.name 'ruby-builder-bot' | |
git config user.email '[email protected]' | |
- run: ruby check-new-releases.rb |