simplycop 1.14.16 → 1.14.18
Sign up to get free protection for your applications and to get access to all the features.
- 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 -1
- data/docs/index.md +1 -1
- 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: 4c4f3cf1e5a8d1af59705accabb65136954b8237c6257164695d289df0281f2d
|
4
|
+
data.tar.gz: f0ff5eebbc578b9151b8e9472048cc7ad102a955741039c39d5a7076eb1a2f98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dbe334ffbbacc9d1834d56a6be73ca0b263eda328166222edb5ec71e87c2455929103c1ae0b543e1c54b89d3f9442dac19b718e51a537058fcb21b537e91679f
|
7
|
+
data.tar.gz: 6610320caef88186376105c8d8f158cd0b20d9e05b44f61c8b81822e599cb6e9aa43890d176eefc5ac4ed5208b1d32bd0b606b16d46cbb00958ae204753eeaa4
|
@@ -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
@@ -7,7 +7,7 @@ metadata:
|
|
7
7
|
annotations:
|
8
8
|
github.com/project-slug: "simplybusiness/simplycop"
|
9
9
|
backstage.io/source-location: url:https://github.com/simplybusiness/simplycop/
|
10
|
-
|
10
|
+
simplybusiness.com/sast-scanning: enabled
|
11
11
|
spec:
|
12
12
|
type: library
|
13
13
|
lifecycle: production
|
data/docs/index.md
CHANGED
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.18
|
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-16 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
|