Try to give workflows: write permission #2733
This file contains hidden or 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: | ||
| permissions: | ||
| contents: write # for pushing to master | ||
| workflows: write # for changing .github/workflows/build.yml | ||
| jobs: | ||
| check_new_releases: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| - 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 '98265520+ruby-builder-bot@users.noreply.github.com' | ||
| - run: ruby check-new-releases.rb | ||