Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
fd378a1
Switched to new dev container
MatthewPopat-NHS Mar 5, 2026
b2a1bc8
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Mar 5, 2026
4bcdc14
Fixed github workflows
MatthewPopat-NHS Mar 5, 2026
c8f6890
Fixed github workflows
MatthewPopat-NHS Mar 5, 2026
2db6103
Initial integration of cdk constructs
MatthewPopat-NHS Mar 5, 2026
e6bf8e1
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Mar 6, 2026
29d9720
Fixed devcontainer.json for jq
MatthewPopat-NHS Mar 6, 2026
7146b74
Moved to method of pinning dev container image
MatthewPopat-NHS Mar 6, 2026
2d18645
Cleaned up unneeded steps
MatthewPopat-NHS Mar 6, 2026
77a7de0
More pipeline cleanup
MatthewPopat-NHS Mar 6, 2026
4cdd3ef
Initial CDK changes for new app creation
MatthewPopat-NHS Mar 9, 2026
2ba7285
Initial new CDK app
MatthewPopat-NHS Mar 9, 2026
e47aef4
Simplifying deploy process
MatthewPopat-NHS Mar 13, 2026
5816ae2
Fixed github action scripts to no longer pass redundant release params
MatthewPopat-NHS Mar 18, 2026
0851106
Removed more redundant github action params
MatthewPopat-NHS Mar 18, 2026
98058fd
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Mar 18, 2026
6fa70ad
CDK fixes and TS fixes
MatthewPopat-NHS Mar 18, 2026
98be190
Fixed github package auth and made synth not need to lookup CF exports
MatthewPopat-NHS Mar 18, 2026
ebd9c0f
Removed redundant scripts and steps and fixed packaging
MatthewPopat-NHS Mar 18, 2026
3e2ea8d
Merge branch 'main' into AEA-6269
MatthewPopat-NHS Mar 18, 2026
05308cc
Consolidated build scripts
MatthewPopat-NHS Mar 18, 2026
bc23d14
Moved SharedSecrets to statefull so that cfn parameters work
MatthewPopat-NHS Mar 19, 2026
155744e
Fixed nag suppressions
MatthewPopat-NHS Mar 19, 2026
11046f4
Actually Fixed nag suppressions
MatthewPopat-NHS Mar 19, 2026
520d184
Fixed cfn parameter names
MatthewPopat-NHS Mar 19, 2026
75d2e5b
Made construct for static content deployment and fixed asset permissions
MatthewPopat-NHS Mar 19, 2026
4a99a6b
Committed missed file
MatthewPopat-NHS Mar 19, 2026
56fa302
Fixed permissions for static content deployment
MatthewPopat-NHS Mar 19, 2026
59f4e9d
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Mar 20, 2026
daf6f98
Split out US stateless and frontdoor stacks and fixed token handling …
MatthewPopat-NHS Mar 25, 2026
6767628
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Mar 26, 2026
d3f627e
Fixed dependency order in release pipelines
MatthewPopat-NHS Mar 26, 2026
a21f7d2
Fixed github allow list and cfn guard suppressions
MatthewPopat-NHS Mar 26, 2026
84382f9
Stopped cdk-deploy from redeploying dependent stacks
MatthewPopat-NHS Mar 27, 2026
d82f117
Fixed Cloudfront functions
MatthewPopat-NHS Mar 27, 2026
54a8bc7
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Mar 27, 2026
b0caacc
Initial implementation of cdk watch
MatthewPopat-NHS Apr 1, 2026
5ac6190
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Apr 1, 2026
e22baae
Simplified CDK code and fixed package lock
MatthewPopat-NHS Apr 1, 2026
e3594c5
fixed package lock
MatthewPopat-NHS Apr 1, 2026
13c6203
fixed package lock
MatthewPopat-NHS Apr 1, 2026
61a2e53
Merge branch 'main' into AEA-6269
MatthewPopat-NHS Apr 1, 2026
8482789
fixed package lock
MatthewPopat-NHS Apr 1, 2026
e835cd3
fixed jwks urls
MatthewPopat-NHS Apr 1, 2026
bc2fa28
Fixed local running of UI
MatthewPopat-NHS Apr 8, 2026
e94eba1
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Apr 9, 2026
5ef5558
Fixed github workflow issues
MatthewPopat-NHS Apr 9, 2026
35d67b0
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Apr 10, 2026
564853c
Fixed sonar coverage exclusions
MatthewPopat-NHS Apr 13, 2026
9330e6a
Merge remote-tracking branch 'origin/main' into AEA-6269
MatthewPopat-NHS Apr 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .cfnlintrc

This file was deleted.

278 changes: 0 additions & 278 deletions .github/scripts/fix_cdk_json.sh

This file was deleted.

19 changes: 11 additions & 8 deletions .github/workflows/cdk_package_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ name: cdk package code
on:
workflow_call:
inputs:
VERSION_NUMBER:
required: true
type: string
COMMIT_ID:
required: true
type: string
pinned_image:
required: true
type: string
Expand All @@ -31,10 +25,20 @@ jobs:
- name: copy .tool-versions
run: |
cp /home/vscode/.tool-versions "$HOME/.tool-versions"

- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
persist-credentials: false

- name: Setting up .npmrc
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: |
echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
echo "@nhsdigital:registry=https://npm.pkg.github.com" >> ~/.npmrc

- name: make install
run: |
make install
Expand All @@ -48,8 +52,7 @@ jobs:
package.json \
package-lock.json \
tsconfig.defaults.json \
Makefile \
cdk.json
Makefile

- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
name: upload build artifact
Expand Down
Loading
Loading