gitlab-dangerfiles 4.4.0 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +16 -12
- data/lib/gitlab/dangerfiles/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3371fdf6ddb99f838b75a15726a1750b14f9b56537949c86caae8b9345b9569d
|
|
4
|
+
data.tar.gz: 18eb20e9a7b43ab2b2556cd2a59ae344af3d11a5c003e76ca5fd4a5a5d819331
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba10efb103ab0c9355e102de004d512918fb558e6e3a486b1adcc609a9d4b083f714d33b5e595b3f2a210dec8be934bb4d0df3bb9f8d46c95c4557407f79f481
|
|
7
|
+
data.tar.gz: c37a12218910f95359591f91509d99f61e230ecd3022d4886ff03635cddf8455c34bf045a15438e50bdf2688e7f5eafe206a8a2735a08adb13397d4a2eb8491d
|
data/.gitlab-ci.yml
CHANGED
|
@@ -2,6 +2,9 @@ stages:
|
|
|
2
2
|
- test
|
|
3
3
|
- deploy
|
|
4
4
|
|
|
5
|
+
variables:
|
|
6
|
+
DEFAULT_CI_IMAGE: "ruby:${RUBY_VERSION}"
|
|
7
|
+
|
|
5
8
|
workflow:
|
|
6
9
|
rules:
|
|
7
10
|
# For merge requests, create a pipeline.
|
|
@@ -11,8 +14,8 @@ workflow:
|
|
|
11
14
|
# For tags, create a pipeline.
|
|
12
15
|
- if: '$CI_COMMIT_TAG'
|
|
13
16
|
|
|
14
|
-
|
|
15
|
-
image: "
|
|
17
|
+
default:
|
|
18
|
+
image: "${DEFAULT_CI_IMAGE}"
|
|
16
19
|
tags:
|
|
17
20
|
- gitlab-org
|
|
18
21
|
before_script:
|
|
@@ -28,23 +31,22 @@ workflow:
|
|
|
28
31
|
- Gemfile.lock
|
|
29
32
|
policy: pull
|
|
30
33
|
|
|
31
|
-
test:
|
|
32
|
-
extends: .default
|
|
34
|
+
.default-test-job:
|
|
33
35
|
stage: test
|
|
34
|
-
|
|
35
|
-
- bundle exec rspec
|
|
36
|
+
needs: []
|
|
36
37
|
parallel:
|
|
37
38
|
matrix:
|
|
38
39
|
- RUBY_VERSION: ['3.0', '3.1', '3.2']
|
|
39
40
|
|
|
41
|
+
test:rspec:
|
|
42
|
+
extends: .default-test-job
|
|
43
|
+
script:
|
|
44
|
+
- bundle exec rspec
|
|
45
|
+
|
|
40
46
|
test:rubocop:
|
|
41
|
-
extends: .default
|
|
42
|
-
stage: test
|
|
47
|
+
extends: .default-test-job
|
|
43
48
|
script:
|
|
44
49
|
- bundle exec rubocop -P -E .
|
|
45
|
-
parallel:
|
|
46
|
-
matrix:
|
|
47
|
-
- RUBY_VERSION: ['3.0', '3.1', '3.2']
|
|
48
50
|
|
|
49
51
|
include:
|
|
50
52
|
- template: Security/Dependency-Scanning.gitlab-ci.yml
|
|
@@ -53,7 +55,9 @@ include:
|
|
|
53
55
|
- project: 'gitlab-org/quality/pipeline-common'
|
|
54
56
|
file:
|
|
55
57
|
- '/ci/danger-review.yml'
|
|
56
|
-
|
|
58
|
+
- component: "gitlab.com/gitlab-org/quality/pipeline-common/gem-release@7.6.1"
|
|
59
|
+
inputs:
|
|
60
|
+
smoke_test_script: "ruby -r 'gitlab-dangerfiles' -e \"puts Gitlab::Dangerfiles::VERSION\""
|
|
57
61
|
|
|
58
62
|
# run security jobs on MRs
|
|
59
63
|
# see: https://gitlab.com/gitlab-org/gitlab/-/issues/218444#note_478761991
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-dangerfiles
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GitLab
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-10-
|
|
11
|
+
date: 2023-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -263,7 +263,7 @@ metadata:
|
|
|
263
263
|
homepage_uri: https://gitlab.com/gitlab-org/ruby/gems/gitlab-dangerfiles
|
|
264
264
|
source_code_uri: https://gitlab.com/gitlab-org/ruby/gems/gitlab-dangerfiles
|
|
265
265
|
changelog_uri: https://gitlab.com/gitlab-org/ruby/gems/gitlab-dangerfiles/-/releases
|
|
266
|
-
post_install_message:
|
|
266
|
+
post_install_message:
|
|
267
267
|
rdoc_options: []
|
|
268
268
|
require_paths:
|
|
269
269
|
- lib
|
|
@@ -278,8 +278,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
278
278
|
- !ruby/object:Gem::Version
|
|
279
279
|
version: '0'
|
|
280
280
|
requirements: []
|
|
281
|
-
rubygems_version: 3.
|
|
282
|
-
signing_key:
|
|
281
|
+
rubygems_version: 3.3.26
|
|
282
|
+
signing_key:
|
|
283
283
|
specification_version: 4
|
|
284
284
|
summary: This gem provides common Dangerfile and plugins for GitLab projects.
|
|
285
285
|
test_files: []
|