Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] build(deps-dev): bump rubocop from 1.63.4 to 1.63.5 #368

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/workflows/dependabot-tapioca.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Dependabot Tapioca updates
on:
pull_request:
types: [opened, synchronize]

permissions:
contents: write
pull-requests: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Fetch Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1
- uses: actions/checkout@v4
if: ${{ steps.dependabot-metadata.outputs.package-ecosystem == 'bundler' }}
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Update Ubuntu package repository
if: ${{ steps.dependabot-metadata.outputs.package-ecosystem == 'bundler' }}
run: sudo apt-get update
- name: Setup sqlite-devel
if: ${{ steps.dependabot-metadata.outputs.package-ecosystem == 'bundler' }}
run: sudo apt-get -y install libsqlite3-dev
- name: Setup libcurl-devel
if: ${{ steps.dependabot-metadata.outputs.package-ecosystem == 'bundler' }}
run: sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev

- uses: ruby/setup-ruby@v1
if: ${{ steps.dependabot-metadata.outputs.package-ecosystem == 'bundler' }}
with:
ruby-version: '3.1.2'
bundler-cache: true
- name: Tapioca update
if: ${{ steps.dependabot-metadata.outputs.package-ecosystem == 'bundler' }}
run: bundle exec tapioca gem
- name: git update
if: ${{ steps.dependabot-metadata.outputs.package-ecosystem == 'bundler' }}
run: |
git config --global user.name 'some user'
git config --global user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
git add sorbet/rbi/gems
git commit -m "updated tapioca definitions" sorbet/rbi/gems
git push -u origin HEAD:${{ github.event.pull_request.head.ref }}
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ GEM
sorbet-runtime (>= 0.5.9204)
rdoc (6.6.3.1)
psych (>= 4.0.0)
regexp_parser (2.9.0)
regexp_parser (2.9.1)
rexml (3.2.6)
rspec (3.13.0)
rspec-core (~> 3.13.0)
Expand All @@ -114,7 +114,7 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
rubocop (1.63.4)
rubocop (1.63.5)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading