Skip to content

Commit 4f1b0d4

Browse files
committed
More cleanup.
1 parent 2941b43 commit 4f1b0d4

File tree

4 files changed

+18
-30
lines changed

4 files changed

+18
-30
lines changed

.github/DangerFiles/Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
source("https://rubygems.org")
22

33
gem 'danger'
4-
gem 'plist'
5-
gem 'danger-xcode_summary'
4+
gem 'plist'

.github/DangerFiles/Gemfile.lock

Lines changed: 15 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -26,57 +26,50 @@ GEM
2626
octokit (>= 4.0)
2727
pstore (~> 0.1)
2828
terminal-table (>= 1, < 4)
29-
danger-plugin-api (1.0.0)
30-
danger (> 2.0)
31-
danger-xcode_summary (1.3.1)
32-
danger-plugin-api (~> 1.0)
33-
xcresult (~> 0.2.2)
34-
faraday (2.12.0)
35-
faraday-net_http (>= 2.0, < 3.4)
29+
faraday (2.12.2)
30+
faraday-net_http (>= 2.0, < 3.5)
3631
json
3732
logger
3833
faraday-http-cache (2.5.1)
3934
faraday (>= 0.8)
40-
faraday-net_http (3.3.0)
41-
net-http
35+
faraday-net_http (3.4.0)
36+
net-http (>= 0.5.0)
4237
git (1.19.1)
4338
addressable (~> 2.8)
4439
rchardet (~> 1.8)
45-
json (2.7.5)
46-
kramdown (2.4.0)
47-
rexml
40+
json (2.9.1)
41+
kramdown (2.5.1)
42+
rexml (>= 3.3.9)
4843
kramdown-parser-gfm (1.1.0)
4944
kramdown (~> 2.0)
50-
logger (1.6.1)
45+
logger (1.6.5)
5146
nap (1.1.0)
52-
net-http (0.4.1)
47+
net-http (0.6.0)
5348
uri
5449
octokit (9.2.0)
5550
faraday (>= 1, < 3)
5651
sawyer (~> 0.9)
5752
open4 (1.3.4)
58-
plist (3.7.1)
59-
pstore (0.1.3)
53+
plist (3.7.2)
54+
pstore (0.1.4)
6055
public_suffix (6.0.1)
61-
rchardet (1.8.0)
62-
rexml (3.3.9)
56+
rchardet (1.9.0)
57+
rexml (3.4.0)
6358
sawyer (0.9.2)
6459
addressable (>= 2.3.5)
6560
faraday (>= 0.17.3, < 3)
6661
terminal-table (3.0.2)
6762
unicode-display_width (>= 1.1.1, < 3)
6863
unicode-display_width (2.6.0)
69-
uri (0.13.1)
70-
xcresult (0.2.2)
64+
uri (1.0.2)
7165

7266
PLATFORMS
7367
arm64-darwin-23
7468
ruby
7569

7670
DEPENDENCIES
7771
danger
78-
danger-xcode_summary
7972
plist
8073

8174
BUNDLED WITH
82-
2.5.22
75+
2.5.22

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Report Static Analysis
5353
env:
5454
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55-
run: bundle exec danger --dangerfile=StaticAnalysis.rb --danger_id=StaticAnalysis
55+
run: bundle exec danger --dangerfile=.github/DanagerFiles/StaticAnalysis.rb --danger_id=StaticAnalysis
5656

5757
test-orchestrator:
5858
runs-on: macos-15
@@ -91,7 +91,7 @@ jobs:
9191
run: |
9292
cd .github/DangerFiles
9393
bundle update && bundle install
94-
bundle exec danger --dangerfile=TestOrchestrator.rb
94+
bundle exec danger --dangerfile=.github/DangerFiles/TestOrchestrator.rb --danger_id="TestOrchestrator"
9595
9696
ios-pr:
9797
needs: [test-orchestrator]

.github/workflows/reusable-workflow.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,10 @@ on:
2323
jobs:
2424
test-ios:
2525
runs-on: ${{ inputs.macos }}
26-
env:
27-
BUNDLE_GEMFILE: ${{ github.workspace }}/.github/DangerFiles/Gemfile
2826
steps:
2927
- uses: actions/checkout@v4
3028
if: ${{ inputs.is_pr }}
3129
with:
32-
# We need a sufficient depth or Danger will occasionally run into issues checking which files were modified.
33-
fetch-depth: 100
3430
ref: ${{ github.event.pull_request.head.sha }}
3531
- uses: actions/checkout@v4
3632
if: ${{ ! inputs.is_pr }}

0 commit comments

Comments
 (0)