dependabot-github_actions 0.271.0 → 0.272.0
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/lib/dependabot/github_actions/file_updater.rb +9 -8
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc101c527401d176e26cfdc408922efa5b9b38d0aeec3c240f658b3a702df1e9
|
|
4
|
+
data.tar.gz: d56fcfa757af6cbf382f4cb24daef12ce420917f3c5e77c343d0008c1d5aad16
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c5c53310f444514783005343fa3c3d4b76931626834fb0d14706fc3b6c0c753159ea4e43361215539f9c3072338c6b41f35a031fbcae46218d31daba77e037c
|
|
7
|
+
data.tar.gz: f972e931cbf6ccdd179c696f3c05f6b78913111fb6d308c44b9e8f0b5e54948fe18541236f6889aecd42792d741e494ad21e7b244ddc04b8095475fda66acaf6
|
|
@@ -12,14 +12,15 @@ module Dependabot
|
|
|
12
12
|
class FileUpdater < Dependabot::FileUpdaters::Base
|
|
13
13
|
extend T::Sig
|
|
14
14
|
|
|
15
|
-
sig { override.
|
|
16
|
-
def self.updated_files_regex
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
15
|
+
sig { override.returns(T::Array[Regexp]) }
|
|
16
|
+
def self.updated_files_regex
|
|
17
|
+
[
|
|
18
|
+
# Matches .yml or .yaml files in the .github/workflows directories
|
|
19
|
+
%r{\.github/workflows/.+\.ya?ml$},
|
|
20
|
+
|
|
21
|
+
# Matches .yml or .yaml files in the root directory or any subdirectory
|
|
22
|
+
%r{(?:^|/).+\.ya?ml$}
|
|
23
|
+
]
|
|
23
24
|
end
|
|
24
25
|
|
|
25
26
|
sig { override.returns(T::Array[Dependabot::DependencyFile]) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-github_actions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.272.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-08-
|
|
11
|
+
date: 2024-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dependabot-common
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.272.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.272.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: debug
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -255,7 +255,7 @@ licenses:
|
|
|
255
255
|
- MIT
|
|
256
256
|
metadata:
|
|
257
257
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
258
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
258
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.272.0
|
|
259
259
|
post_install_message:
|
|
260
260
|
rdoc_options: []
|
|
261
261
|
require_paths:
|