ccs-digitalmarketplace-frameworks 1.8.13 → 1.8.14

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.
@@ -7,7 +7,7 @@ jobs:
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
9
  - name: Read .nvmrc
10
- run: echo ::set-output name=NVMRC::$(cat .nvmrc)
10
+ run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
11
11
  id: nvm
12
12
 
13
13
  - uses: actions/checkout@v4
@@ -13,7 +13,7 @@ jobs:
13
13
 
14
14
  - name: Get package version
15
15
  id: package_version
16
- run: echo "::set-output name=package-version::v$(jq -r ".version" package.json)"
16
+ run: echo "package-version=v$(jq -r ".version" package.json)" >> $GITHUB_OUTPUT
17
17
 
18
18
  - name: Check if version tag already exists
19
19
  id: version_tag
@@ -25,9 +25,8 @@ jobs:
25
25
 
26
26
  - name: Create GitHub release
27
27
  if: ${{ steps.version_tag.outputs.exists == 'false' }}
28
- uses: actions/create-release@v1
29
- env:
30
- GITHUB_TOKEN: ${{ secrets.DM_GITHUB_TOKEN }}
28
+ uses: ncipollo/release-action@v1
31
29
  with:
32
- tag_name: ${{ steps.package_version.outputs.package-version }}
33
- release_name: Release ${{ steps.package_version.outputs.package-version }}
30
+ token: ${{ secrets.DM_GITHUB_TOKEN }}
31
+ tag: ${{ steps.package_version.outputs.package-version }}
32
+ name: Release ${{ steps.package_version.outputs.package-version }}
@@ -302,3 +302,11 @@
302
302
  prefill: False
303
303
  questions:
304
304
  - healthAndSafety
305
+
306
+ -
307
+ name: Cyber essentials
308
+ slug: cyber-essentials
309
+ editable: True
310
+ prefill: False
311
+ questions:
312
+ - cyberEssentials
@@ -0,0 +1,15 @@
1
+ name: Cyber essentials
2
+ question: |
3
+ In relation to the services, please tell us if you comply with one of the following criteria:
4
+
5
+ <ul class="govuk-list govuk-list--bullet govuk-!-margin-top-2 govuk-!-margin-bottom-2">
6
+ <li>You (and if applicable, your consortium members) have a current and valid Cyber Essentials [Plus] certificate which has been awarded by one of the government approved Cyber Essentials [Plus] accreditation bodies within the most recent 12 months and where your organisation proposes to use key subcontractors to carry out the services and these key subcontractors shall be involved in handling sensitive and personal information with regard to the services, such key subcontractors will have in place a valid Cyber Essentials [Plus] certificate by the framework commencement.</li>
7
+ <li>You (and if applicable, your consortium members) do not have a current and valid Cyber Essentials [Plus] certificate which has been awarded by one of the government approved Cyber Essentials [Plus] accreditation bodies but you are working towards gaining it, and will be in a position to confirm that you have been awarded a current and valid Cyber Essentials [Plus] certificate by one of the government approved accreditation bodies, by the framework commencement date and where your organisation proposes to use key subcontractors to carry out the services and these key subcontractors shall be involved in handling sensitive and personal information with regard to the services, such key subcontractors will have in place a valid Cyber Essentials [Plus] certificate by the framework commencement date.</li>
8
+ </ul>
9
+
10
+ type: boolean
11
+
12
+ validations:
13
+ -
14
+ name: answer_required
15
+ message: You must select an option
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccs-digitalmarketplace-frameworks",
3
- "version": "1.8.13",
3
+ "version": "1.8.14",
4
4
  "description": "Data files for Digital Marketplace’s procurement frameworks",
5
5
  "repository": "git@github.com:Crown-Commercial-Service/ccs-digitalmarketplace-frameworks",
6
6
  "author": "enquiries@digitalmarketplace.service.gov.uk"