Skip to content

Commit

Permalink
Merge pull request #90 from artichoke/lopopolo/ruby-2.7-eol
Browse files Browse the repository at this point in the history
Upgrade gemspec minimum Ruby version to 3.0.0
  • Loading branch information
lopopolo authored Apr 27, 2023
2 parents 62d81a1 + a6fb33a commit 1e2ec7c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require:
- rubocop-sorbet
AllCops:
NewCops: enable
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
DisplayCopNames: true
Exclude:
- "**/node_modules/**/*"
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
generate_third_party (1.7.0)
generate_third_party (1.8.0)
sorbet-runtime (~> 0.5)

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This repository is available as a GitHub Action:
```yaml
- name: Generate THIRDPARTY license listing
id: generate_third_party
uses: artichoke/generate_third_party@v1.7.0
uses: artichoke/generate_third_party@v1.8.0
with:
artichoke_ref: trunk
target_triple: x86_64-unknown-linux-gnu
Expand Down
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ runs:
run: |
gem build generate_third_party.gemspec
if [[ "${{ runner.os }}" == "Linux" ]]; then
sudo gem install generate_third_party-1.7.0.gem
sudo gem install generate_third_party-1.8.0.gem
else
gem install generate_third_party-1.7.0.gem
gem install generate_third_party-1.8.0.gem
fi
working-directory: ${{ github.action_path }}

Expand Down
4 changes: 2 additions & 2 deletions generate_third_party.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

Gem::Specification.new do |s|
s.name = 'generate_third_party'
s.version = '1.7.0'
s.required_ruby_version = '>= 2.7.0'
s.version = '1.8.0'
s.required_ruby_version = '>= 3.0.0'
s.summary = "Generate Artichoke's third party dependencies"
s.description = 'Generate lists of third party dependencies and their licenses'
s.authors = ['Ryan Lopopolo']
Expand Down

0 comments on commit 1e2ec7c

Please sign in to comment.