simplycop 1.14.16 → 1.14.17
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/workflows/sast-tools.yaml +39 -0
- data/_pipeline/stage_sast_tools.yml +9 -0
- data/catalog-info.yaml +1 -0
- data/lib/simplycop/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15a556388f73fb6806b805c4988e7ba9541c8f0b1b33bab73048dc88ef693c7f
|
|
4
|
+
data.tar.gz: afb1f130d2b1698dfa132bfa019a1f4bda23bcbc2c97a80ada8769192a7d082e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad4fcf1e6507004fcf7d5daf80c654d090cdaccbb03123ec6d93c7b7b1f288cc441799f72f35c2f7edaff674dd5d4fddec0a1f01bcc3e6a04971732228b4e5a6
|
|
7
|
+
data.tar.gz: 6580c07b6c1bd6e067d7497ab026a34a9a3f05c6b9592f81fa4a356a12fd609bbd2fe396252736b8774971f08b7559ce34fd0518a9b53985e6bb3355e672cdff
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
name: Huxley SAST Tools
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types:
|
|
6
|
+
- opened
|
|
7
|
+
- synchronize
|
|
8
|
+
branches:
|
|
9
|
+
- master
|
|
10
|
+
- main
|
|
11
|
+
workflow_dispatch:
|
|
12
|
+
push:
|
|
13
|
+
branches:
|
|
14
|
+
- master
|
|
15
|
+
- main
|
|
16
|
+
|
|
17
|
+
concurrency: huxley-sast-tools-${{ github.ref }}
|
|
18
|
+
|
|
19
|
+
env:
|
|
20
|
+
REPOSITORY: ${{ github.event.repository.name }}
|
|
21
|
+
|
|
22
|
+
jobs:
|
|
23
|
+
SAST-tools:
|
|
24
|
+
runs-on: ubuntu-latest
|
|
25
|
+
steps:
|
|
26
|
+
- name: Configure AWS Credentials
|
|
27
|
+
uses: aws-actions/configure-aws-credentials@v4
|
|
28
|
+
with:
|
|
29
|
+
aws-access-key-id: ${{ secrets.AWS_LIVE_CICD_ACCESS_KEY_ID }}
|
|
30
|
+
aws-secret-access-key: ${{ secrets.AWS_LIVE_CICD_SECRET_ACCESS_KEY }}
|
|
31
|
+
aws-region: ${{ vars.AWS_LIVE_CICD_REGION }}
|
|
32
|
+
- name: SAST Tools
|
|
33
|
+
uses: aws-actions/aws-codebuild-run-build@v1
|
|
34
|
+
with:
|
|
35
|
+
project-name: ${{ env.REPOSITORY }}
|
|
36
|
+
buildspec-override: _pipeline/stage_sast_tools.yml
|
|
37
|
+
env:
|
|
38
|
+
DEPLOY_TO_DEV_ONLY: true
|
|
39
|
+
DEPLOY_TO_LIVE_ONLY: false
|
data/catalog-info.yaml
CHANGED
|
@@ -8,6 +8,7 @@ metadata:
|
|
|
8
8
|
github.com/project-slug: "simplybusiness/simplycop"
|
|
9
9
|
backstage.io/source-location: url:https://github.com/simplybusiness/simplycop/
|
|
10
10
|
backstage.io/techdocs-ref: dir:.
|
|
11
|
+
simplybusiness.com/sast-scanning: enabled
|
|
11
12
|
spec:
|
|
12
13
|
type: library
|
|
13
14
|
lifecycle: production
|
data/lib/simplycop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simplycop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.14.
|
|
4
|
+
version: 1.14.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simply Business
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-01-
|
|
11
|
+
date: 2024-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -124,6 +124,7 @@ files:
|
|
|
124
124
|
- ".github/workflows/project-board.yml"
|
|
125
125
|
- ".github/workflows/publish-docs.yaml"
|
|
126
126
|
- ".github/workflows/publish_gem.yml"
|
|
127
|
+
- ".github/workflows/sast-tools.yaml"
|
|
127
128
|
- ".github/workflows/version_forget_me_not.yml"
|
|
128
129
|
- ".gitignore"
|
|
129
130
|
- ".rspec"
|
|
@@ -148,6 +149,7 @@ files:
|
|
|
148
149
|
- README.md
|
|
149
150
|
- Rakefile
|
|
150
151
|
- _pipeline/stage_publishdocs.yml
|
|
152
|
+
- _pipeline/stage_sast_tools.yml
|
|
151
153
|
- bin/console
|
|
152
154
|
- bin/setup
|
|
153
155
|
- catalog-info.yaml
|