ccs-digitalmarketplace-frameworks 1.6.0 → 1.6.2
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.
- package/.github/dependabot.yml +5 -0
- package/.github/workflows/publish_package.yml +2 -2
- package/.github/workflows/release.yml +2 -2
- package/.github/workflows/test.yml +6 -6
- package/frameworks/g-cloud-13/manifests/edit_service_as_admin.yml +2 -0
- package/package.json +1 -1
- package/requirements-dev.txt +2 -2
package/.github/dependabot.yml
CHANGED
|
@@ -10,9 +10,9 @@ jobs:
|
|
|
10
10
|
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
|
|
11
11
|
id: nvm
|
|
12
12
|
|
|
13
|
-
- uses: actions/checkout@
|
|
13
|
+
- uses: actions/checkout@v3
|
|
14
14
|
# Setup .npmrc file to publish to npm
|
|
15
|
-
- uses: actions/setup-node@
|
|
15
|
+
- uses: actions/setup-node@v3
|
|
16
16
|
with:
|
|
17
17
|
node-version: '${{ steps.nvm.outputs.NVMRC }}'
|
|
18
18
|
registry-url: 'https://registry.npmjs.org'
|
|
@@ -9,7 +9,7 @@ jobs:
|
|
|
9
9
|
release:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
12
|
+
- uses: actions/checkout@v3
|
|
13
13
|
|
|
14
14
|
- name: Get package version
|
|
15
15
|
id: package_version
|
|
@@ -17,7 +17,7 @@ jobs:
|
|
|
17
17
|
|
|
18
18
|
- name: Check if version tag already exists
|
|
19
19
|
id: version_tag
|
|
20
|
-
uses: mukunku/tag-exists-action@
|
|
20
|
+
uses: mukunku/tag-exists-action@9298fbcc409758ba624a0ae16b83df86637cb8ce
|
|
21
21
|
env:
|
|
22
22
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
23
23
|
with:
|
|
@@ -9,15 +9,15 @@ jobs:
|
|
|
9
9
|
python-version: [3.9]
|
|
10
10
|
|
|
11
11
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
12
|
+
- uses: actions/checkout@v3
|
|
13
13
|
|
|
14
14
|
- name: Set up Python ${{ matrix.python-version }}
|
|
15
|
-
uses: actions/setup-python@
|
|
15
|
+
uses: actions/setup-python@v4
|
|
16
16
|
with:
|
|
17
17
|
python-version: ${{ matrix.python-version }}
|
|
18
18
|
|
|
19
19
|
- name: Setup Python cache
|
|
20
|
-
uses: actions/cache@
|
|
20
|
+
uses: actions/cache@v3
|
|
21
21
|
with:
|
|
22
22
|
path: venv
|
|
23
23
|
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}
|
|
@@ -44,15 +44,15 @@ jobs:
|
|
|
44
44
|
- scripts/generate-validation-schemas.py --output-path=/tmp
|
|
45
45
|
|
|
46
46
|
steps:
|
|
47
|
-
- uses: actions/checkout@
|
|
47
|
+
- uses: actions/checkout@v3
|
|
48
48
|
|
|
49
49
|
- name: Set up Python ${{ matrix.python-version }}
|
|
50
|
-
uses: actions/setup-python@
|
|
50
|
+
uses: actions/setup-python@v4
|
|
51
51
|
with:
|
|
52
52
|
python-version: ${{ matrix.python-version }}
|
|
53
53
|
|
|
54
54
|
- name: Setup Python cache
|
|
55
|
-
uses: actions/cache@
|
|
55
|
+
uses: actions/cache@v3
|
|
56
56
|
with:
|
|
57
57
|
path: venv
|
|
58
58
|
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
- multiqMobile
|
|
82
82
|
- multiqWebInterface
|
|
83
83
|
- multiqServiceInterface
|
|
84
|
+
- multiqUserSupport
|
|
84
85
|
- multiqAPIHosting
|
|
85
86
|
- multiqAPISoftware
|
|
86
87
|
- multiqCommandLineInterface
|
|
@@ -206,6 +207,7 @@
|
|
|
206
207
|
- multiqStandardsISO28000
|
|
207
208
|
- multiqStandardsCSASTAR
|
|
208
209
|
- multiqStandardsPCI
|
|
210
|
+
- multiqStandardsCyber
|
|
209
211
|
- multiqAccreditationsOther
|
|
210
212
|
|
|
211
213
|
- name: Energy efficiency
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccs-digitalmarketplace-frameworks",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "Data files for Digital Marketplace’s procurement frameworks",
|
|
5
5
|
"repository": "git@github.com:Brickendon-DMp1-5/digitalmarketplace-frameworks",
|
|
6
6
|
"author": "enquiries@digitalmarketplace.service.gov.uk"
|
package/requirements-dev.txt
CHANGED
|
@@ -25,7 +25,7 @@ ccs-digitalmarketplace-utils==61.6.0
|
|
|
25
25
|
# via
|
|
26
26
|
# -r requirements.txt
|
|
27
27
|
# ccs-digitalmarketplace-content-loader
|
|
28
|
-
certifi==
|
|
28
|
+
certifi==2022.12.7
|
|
29
29
|
# via requests
|
|
30
30
|
cffi==1.14.5
|
|
31
31
|
# via cryptography
|
|
@@ -72,7 +72,7 @@ flask-wtf==0.14.3
|
|
|
72
72
|
# via ccs-digitalmarketplace-utils
|
|
73
73
|
fleep==1.0.1
|
|
74
74
|
# via ccs-digitalmarketplace-utils
|
|
75
|
-
future==0.18.
|
|
75
|
+
future==0.18.3
|
|
76
76
|
# via notifications-python-client
|
|
77
77
|
gds-metrics==0.2.4
|
|
78
78
|
# via ccs-digitalmarketplace-utils
|