Skip to content

Commit 91be9ee

Browse files
authored
Fix dependencies for bats (#542)
This way it will not suddenly break if depedency updates break API.
1 parent 4d190b2 commit 91be9ee

3 files changed

Lines changed: 42 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ jobs:
310310
id: setup-bats
311311
uses: bats-core/bats-action@4.0.0
312312
- name: Install Ruby dependencies
313-
run: bundle update --bundler && bundle install
313+
run: bundle install
314314
- name: Run unittests
315315
shell: bash
316316
env:

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
source 'https://rubygems.org'
55

6-
gem 'bashcov'
7-
gem 'simplecov'
8-
gem 'simplecov-cobertura'
6+
gem 'bashcov', '~> 3.3'
7+
gem 'simplecov', '~> 0.22'
8+
gem 'simplecov-cobertura', '~> 3.0'

Gemfile.lock

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
bashcov (3.3.0)
5+
simplecov (~> 0.21)
6+
docile (1.4.1)
7+
rexml (3.4.4)
8+
simplecov (0.22.0)
9+
docile (~> 1.1)
10+
simplecov-html (~> 0.11)
11+
simplecov_json_formatter (~> 0.1)
12+
simplecov-cobertura (3.2.0)
13+
rexml
14+
simplecov (~> 0.19)
15+
simplecov-html (0.13.2)
16+
simplecov_json_formatter (0.1.4)
17+
18+
PLATFORMS
19+
ruby
20+
x86_64-linux-gnu
21+
22+
DEPENDENCIES
23+
bashcov (~> 3.3)
24+
simplecov (~> 0.22)
25+
simplecov-cobertura (~> 3.0)
26+
27+
CHECKSUMS
28+
bashcov (3.3.0) sha256=9a761b6e36598f74897ead922cc04f85de3d1362f54a595c8eb6fcf5cb139c31
29+
bundler (4.0.16) sha256=d6ca5dd440c24f9abce9844cf44cc8e18c6a553de65a47efb4544137af92c47d
30+
docile (1.4.1) sha256=96159be799bfa73cdb721b840e9802126e4e03dfc26863db73647204c727f21e
31+
rexml (3.4.4) sha256=19e0a2c3425dfbf2d4fc1189747bdb2f849b6c5e74180401b15734bc97b5d142
32+
simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5
33+
simplecov-cobertura (3.2.0) sha256=70d702658677fcb20e5aceb6915ccf8bc62ff2ccd38b62b3ad5c9db5c0888740
34+
simplecov-html (0.13.2) sha256=bd0b8e54e7c2d7685927e8d6286466359b6f16b18cb0df47b508e8d73c777246
35+
simplecov_json_formatter (0.1.4) sha256=529418fbe8de1713ac2b2d612aa3daa56d316975d307244399fa4838c601b428
36+
37+
BUNDLED WITH
38+
4.0.16

0 commit comments

Comments
 (0)