Skip to content

Commit 853c5a4

Browse files
committed
Fix danger command and update gem
1 parent 08675bd commit 853c5a4

File tree

3 files changed

+29
-23
lines changed

3 files changed

+29
-23
lines changed

.github/workflows/pr_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Run danger
5151
env:
5252
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53-
run: danger
53+
run: bundle exec danger
5454

5555
unit_test:
5656
runs-on: ubuntu-latest

Gemfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
# frozen_string_literal: true
12
source "https://rubygems.org"
23

3-
gem "danger"
4-
gem 'danger-android_lint'
4+
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
5+
6+
gem 'danger'
7+
gem 'danger-android_lint'

Gemfile.lock

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,66 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.5.2)
5-
public_suffix (>= 2.0.2, < 4.0)
4+
addressable (2.7.0)
5+
public_suffix (>= 2.0.2, < 5.0)
66
ansi (1.5.0)
77
ast (2.4.0)
8-
claide (1.0.2)
8+
claide (1.0.3)
99
claide-plugins (0.9.2)
1010
cork
1111
nap
1212
open4 (~> 1.3)
1313
colored2 (3.1.2)
1414
cork (0.3.0)
1515
colored2 (~> 3.1)
16-
danger (6.0.6)
16+
danger (6.3.2)
1717
claide (~> 1.0)
1818
claide-plugins (>= 0.9.2)
1919
colored2 (~> 3.1)
2020
cork (~> 0.1)
2121
faraday (~> 0.9)
22-
faraday-http-cache (~> 1.0)
23-
git (~> 1.5)
22+
faraday-http-cache (~> 2.0)
23+
git (~> 1.6)
2424
kramdown (~> 2.0)
2525
kramdown-parser-gfm (~> 1.0)
2626
no_proxy_fix
2727
octokit (~> 4.7)
2828
terminal-table (~> 1)
29-
danger-android_lint (0.0.7)
29+
danger-android_lint (0.0.8)
3030
danger-plugin-api (~> 1.0)
3131
oga
3232
danger-plugin-api (1.0.0)
3333
danger (> 2.0)
34-
faraday (0.15.4)
34+
faraday (0.17.3)
3535
multipart-post (>= 1.2, < 3)
36-
faraday-http-cache (1.3.1)
36+
faraday-http-cache (2.0.0)
3737
faraday (~> 0.8)
38-
git (1.5.0)
38+
git (1.6.0)
39+
rchardet (~> 1.8)
3940
kramdown (2.1.0)
40-
kramdown-parser-gfm (1.0.1)
41+
kramdown-parser-gfm (1.1.0)
4142
kramdown (~> 2.0)
42-
multipart-post (2.0.0)
43+
multipart-post (2.1.1)
4344
nap (1.1.0)
4445
no_proxy_fix (0.1.2)
45-
octokit (4.14.0)
46+
octokit (4.18.0)
47+
faraday (>= 0.9)
4648
sawyer (~> 0.8.0, >= 0.5.3)
47-
oga (2.15)
49+
oga (3.2)
4850
ast
4951
ruby-ll (~> 2.1)
5052
open4 (1.3.4)
51-
public_suffix (3.0.3)
53+
public_suffix (4.0.3)
54+
rchardet (1.8.0)
5255
ruby-ll (2.1.2)
5356
ansi
5457
ast
55-
sawyer (0.8.1)
56-
addressable (>= 2.3.5, < 2.6)
57-
faraday (~> 0.8, < 1.0)
58+
sawyer (0.8.2)
59+
addressable (>= 2.3.5)
60+
faraday (> 0.8, < 2.0)
5861
terminal-table (1.8.0)
5962
unicode-display_width (~> 1.1, >= 1.1.1)
60-
unicode-display_width (1.5.0)
63+
unicode-display_width (1.7.0)
6164

6265
PLATFORMS
6366
ruby
@@ -67,4 +70,4 @@ DEPENDENCIES
6770
danger-android_lint
6871

6972
BUNDLED WITH
70-
2.0.1
73+
2.1.4

0 commit comments

Comments
 (0)