Skip to content

Bump rexml from 3.2.6 to 3.3.6 #1315

Bump rexml from 3.2.6 to 3.3.6

Bump rexml from 3.2.6 to 3.3.6 #1315

Workflow file for this run

on:
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
format-code:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
- name: Format code
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
bundle --quiet
bundle exec rubocop -a
git config --global user.name "Rubocop"
git add . && git commit -m"Commit changes made by Rubocop" && git push || echo "Nothing to fix"