publishing_platform_app_config 0.4.1 → 0.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/.github/dependabot.yml +10 -10
- data/.github/workflows/actionlint.yml +1 -1
- data/.github/workflows/ci.yml +13 -3
- data/.gitignore +2 -0
- data/lib/publishing_platform_app_config/version.rb +1 -1
- data/publishing_platform_app_config.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed743bc465100f6f95b3a12bf718d6046dbca643f70c6d3ec732a56775dfa11f
|
|
4
|
+
data.tar.gz: d53a7ee9449efbc1cf670f67d175a723aa21009ca13a3a57553822e87378d639
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38c1af1f8a4ef871469ee27676ff77daaa1c5129bbda8cecf09592edabb1cdd70a69613985bcf4b42a7692e482a701fa5d24c1cc8e83e74c58baa1974931e808
|
|
7
|
+
data.tar.gz: 8b955546fc23c7945d1e6e63f4118a001b931394a010b8550c61926828093c0c17eaaa1d9d8ce5b5b6a21a9ccecd26ff09321e153684aacc8acd8bd83c78770a
|
data/.github/dependabot.yml
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
version: 2
|
|
2
2
|
updates:
|
|
3
|
-
- package-ecosystem: bundler
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
- package-ecosystem: github-actions
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
- package-ecosystem: bundler
|
|
4
|
+
directory: "/"
|
|
5
|
+
schedule:
|
|
6
|
+
interval: daily
|
|
7
|
+
open-pull-requests-limit: 10
|
|
8
|
+
- package-ecosystem: github-actions
|
|
9
|
+
directory: "/"
|
|
10
|
+
schedule:
|
|
11
|
+
interval: daily
|
|
12
|
+
open-pull-requests-limit: 10
|
|
@@ -6,7 +6,7 @@ jobs:
|
|
|
6
6
|
actionlint:
|
|
7
7
|
runs-on: ubuntu-latest
|
|
8
8
|
steps:
|
|
9
|
-
- uses: actions/checkout@
|
|
9
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
10
10
|
with:
|
|
11
11
|
show-progress: false
|
|
12
12
|
- uses: publishing-platform/publishing-platform-infrastructure/.github/actions/actionlint@main
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -2,7 +2,17 @@ name: CI
|
|
|
2
2
|
|
|
3
3
|
on: [push, pull_request]
|
|
4
4
|
|
|
5
|
-
jobs:
|
|
5
|
+
jobs:
|
|
6
|
+
codeql-sast:
|
|
7
|
+
name: CodeQL SAST scan
|
|
8
|
+
uses: publishing-platform/publishing-platform-infrastructure/.github/workflows/codeql-analysis.yml@main
|
|
9
|
+
permissions:
|
|
10
|
+
security-events: write
|
|
11
|
+
|
|
12
|
+
dependency-review:
|
|
13
|
+
name: Dependency Review scan
|
|
14
|
+
uses: publishing-platform/publishing-platform-infrastructure/.github/workflows/dependency-review.yml@main
|
|
15
|
+
|
|
6
16
|
# This matrix job runs the test suite against multiple Ruby versions
|
|
7
17
|
test_matrix:
|
|
8
18
|
strategy:
|
|
@@ -11,8 +21,8 @@ jobs:
|
|
|
11
21
|
ruby: [3.2, 3.3, 3.4]
|
|
12
22
|
runs-on: ubuntu-latest
|
|
13
23
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
15
|
-
- uses: ruby/setup-ruby@v1
|
|
24
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
25
|
+
- uses: ruby/setup-ruby@c4e5b1316158f92e3d49443a9d58b31d25ac0f8f # v1.306.0
|
|
16
26
|
with:
|
|
17
27
|
ruby-version: ${{ matrix.ruby }}
|
|
18
28
|
bundler-cache: true
|
data/.gitignore
CHANGED
|
@@ -23,6 +23,6 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
|
|
24
24
|
spec.add_development_dependency "climate_control", "~> 1.2"
|
|
25
25
|
spec.add_development_dependency "publishing_platform_rubocop", "~> 0.2"
|
|
26
|
-
spec.add_development_dependency "rails", "~>
|
|
26
|
+
spec.add_development_dependency "rails", "~> 8"
|
|
27
27
|
spec.add_development_dependency "simplecov", "~> 0.22"
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: publishing_platform_app_config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Publishing Platform
|
|
@@ -97,14 +97,14 @@ dependencies:
|
|
|
97
97
|
requirements:
|
|
98
98
|
- - "~>"
|
|
99
99
|
- !ruby/object:Gem::Version
|
|
100
|
-
version: '
|
|
100
|
+
version: '8'
|
|
101
101
|
type: :development
|
|
102
102
|
prerelease: false
|
|
103
103
|
version_requirements: !ruby/object:Gem::Requirement
|
|
104
104
|
requirements:
|
|
105
105
|
- - "~>"
|
|
106
106
|
- !ruby/object:Gem::Version
|
|
107
|
-
version: '
|
|
107
|
+
version: '8'
|
|
108
108
|
- !ruby/object:Gem::Dependency
|
|
109
109
|
name: simplecov
|
|
110
110
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -164,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
164
164
|
- !ruby/object:Gem::Version
|
|
165
165
|
version: '0'
|
|
166
166
|
requirements: []
|
|
167
|
-
rubygems_version: 4.0.
|
|
167
|
+
rubygems_version: 4.0.12
|
|
168
168
|
specification_version: 4
|
|
169
169
|
summary: Base configuration for Publishing Platform applications
|
|
170
170
|
test_files: []
|