Skip to content

Commit 0068d9f

Browse files
authored
Merge pull request #10 from aserto-dev/update_deps
update dependencies
2 parents af07f49 + 5d61f85 commit 0068d9f

11 files changed

Lines changed: 22 additions & 18 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ jobs:
8989
token: ${{ secrets.VAULT_TOKEN }}
9090
secrets: |
9191
kv/data/rubygems "RUBYGEMS_API_KEY" | GEM_HOST_API_KEY;
92+
kv/data/github "READ_WRITE_TOKEN" | GH_TOKEN;
93+
9294
9395
- name: Checkout
9496
uses: actions/checkout@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ build
2222
Gemfile.lock
2323
Gemfile.local
2424
gemfiles/*.lock
25+
.qodo

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AllCops:
55
- vendor/bundle/**/*
66
- gemfiles/*
77

8-
require:
8+
plugins:
99
- rubocop-rspec
1010
- rubocop-performance
1111

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ group :development do
1010
gem "bundler", ">= 1.15.0", "< 3.0"
1111
gem "codecov", "~> 0.6"
1212
gem "grpc_mock", "~> 0.4"
13-
gem "rspec", "~> 3.0"
14-
gem "rubocop-performance", "~> 1.14"
15-
gem "rubocop-rspec", "~> 2.11"
13+
gem "rspec", "~> 3.5"
14+
gem "rubocop-performance", "~> 1.24"
15+
gem "rubocop-rspec", "~> 3.5"
1616
end

aserto-rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
3131
spec.metadata["rubygems_mfa_required"] = "true"
3232

3333
# runtime dependencies
34-
spec.add_runtime_dependency "aserto", "~> 0.31.0"
34+
spec.add_dependency "aserto", "~> 0.31.7"
3535
end

gemfiles/rails_6.0.0.gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ group :development do
1010
gem "bundler", ">= 1.15.0", "< 3.0"
1111
gem "codecov", "~> 0.6"
1212
gem "grpc_mock", "~> 0.4"
13-
gem "rspec", "~> 3.0"
14-
gem "rubocop-performance", "~> 1.14"
15-
gem "rubocop-rspec", "~> 2.11"
13+
gem "rspec", "~> 3.5"
14+
gem "rubocop-performance", "~> 1.24"
15+
gem "rubocop-rspec", "~> 3.5"
1616
end
1717

1818
gemspec path: "../"

gemfiles/rails_6.1.0.gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ group :development do
1010
gem "bundler", ">= 1.15.0", "< 3.0"
1111
gem "codecov", "~> 0.6"
1212
gem "grpc_mock", "~> 0.4"
13-
gem "rspec", "~> 3.0"
14-
gem "rubocop-performance", "~> 1.14"
15-
gem "rubocop-rspec", "~> 2.11"
13+
gem "rspec", "~> 3.5"
14+
gem "rubocop-performance", "~> 1.24"
15+
gem "rubocop-rspec", "~> 3.5"
1616
end
1717

1818
gemspec path: "../"

gemfiles/rails_7.0.0.gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ group :development do
1010
gem "bundler", ">= 1.15.0", "< 3.0"
1111
gem "codecov", "~> 0.6"
1212
gem "grpc_mock", "~> 0.4"
13-
gem "rspec", "~> 3.0"
14-
gem "rubocop-performance", "~> 1.14"
15-
gem "rubocop-rspec", "~> 2.11"
13+
gem "rspec", "~> 3.5"
14+
gem "rubocop-performance", "~> 1.24"
15+
gem "rubocop-rspec", "~> 3.5"
1616
end
1717

1818
gemspec path: "../"

gemfiles/rails_main.gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ group :development do
1212
gem "bundler", ">= 1.15.0", "< 3.0"
1313
gem "codecov", "~> 0.6"
1414
gem "grpc_mock", "~> 0.4"
15-
gem "rspec", "~> 3.0"
16-
gem "rubocop-performance", "~> 1.14"
17-
gem "rubocop-rspec", "~> 2.11"
15+
gem "rspec", "~> 3.5"
16+
gem "rubocop-performance", "~> 1.24"
17+
gem "rubocop-rspec", "~> 3.5"
1818
end
1919

2020
gemspec path: "../"

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ build:
3030
.PHONY: bump-version
3131
bump-version:
3232
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)"
33-
@${EXT_BIN_DIR}/svu patch --prefix="" > ./VERSION
33+
@${EXT_BIN_DIR}/svu patch > ./VERSION
3434

3535
.PHONY: push
3636
push:

0 commit comments

Comments
 (0)