forked from dependabot/dependabot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We're starting to pin the desired ruby version in multiple places: * Rubocop * the new `ruby/setup-ruby` action that we're adding in dependabot#5433 We used to not ship the `.ruby-version` file, with the thought that this is a library... but this file isn't included in the gemfile spec, so we're not tying the hands of our users. This merely sets the default version of Ruby that we're using for development. We will keep this in sync with the version of Ruby installed in the Dockerfile, so it'll target the version of Ruby we use in production at GitHub. But since not included in the gem, others are free to use a different Ruby version. Copy the `.ruby-version` file into the CI container.
- Loading branch information
1 parent
c2adf22
commit 373a772
Showing
4 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,5 +26,4 @@ vendor | |
/.core-bash_history | ||
coverage/ | ||
.ruby-gemset | ||
.ruby-version | ||
.tool-versions |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.7.6 |
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