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

Update mixlib-archive requirement from ~> 0.4 to >= 0.4, < 2.0 in /sr… #2257

Merged
merged 1 commit into from
Sep 30, 2021
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
working-directory: src/supermarket
ruby-version: 2.6
ruby-version: 2.7
bundler-cache: true
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR
- name: run chefstyle
Expand All @@ -28,7 +28,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
working-directory: src/supermarket/engines/fieri
ruby-version: 2.6
ruby-version: 2.7
bundler-cache: true
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR
- name: run chefstyle
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up ruby 2.6
- name: Set up ruby 2.7
uses: ruby/setup-ruby@v1
with:
working-directory: src/supermarket
ruby-version: 2.6
ruby-version: 2.7
bundler-cache: true
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR
- name: create database schema
Expand Down Expand Up @@ -65,11 +65,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up ruby 2.6
- name: Set up ruby 2.7
uses: ruby/setup-ruby@v1
with:
working-directory: src/supermarket/engines/fieri
ruby-version: 2.6
ruby-version: 2.7
bundler-cache: true
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR
- name: run specs
Expand Down
4 changes: 2 additions & 2 deletions src/supermarket/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
fieri (0.0.1)
dotenv-rails
foodcritic (~> 16.3)
mixlib-archive (~> 0.4)
mixlib-archive (>= 0.4, < 2.0)
octokit (~> 4.16)
rails (>= 6.1, < 7)
ruby-filemagic
Expand Down Expand Up @@ -864,4 +864,4 @@ DEPENDENCIES
yard

BUNDLED WITH
2.1.4
2.1.4
2 changes: 1 addition & 1 deletion src/supermarket/engines/fieri/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
fieri (0.0.1)
dotenv-rails
foodcritic (~> 16.3)
mixlib-archive (~> 0.4)
mixlib-archive (>= 0.4, < 2.0)
octokit (~> 4.16)
rails (>= 6.1, < 7)
ruby-filemagic
Expand Down
2 changes: 1 addition & 1 deletion src/supermarket/engines/fieri/fieri.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|

s.add_dependency "dotenv-rails"
s.add_dependency "foodcritic", "~> 16.3"
s.add_dependency "mixlib-archive", "~> 0.4"
s.add_dependency "mixlib-archive", ">= 0.4", "< 2.0"
s.add_dependency "octokit", "~> 4.16" # 4.16+ fixes deprecations in auth
s.add_dependency "rails", [">= 6.1", "< 7"]
s.add_dependency "ruby-filemagic"
Expand Down