Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .github/workflows/publish-cdn-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ run-name: Publish test CDN artifacts - versioned by @${{ github.actor }}
on:
workflow_dispatch:

permissions:
contents: read

concurrency:
group: deploy-${{ github.ref }}
cancel-in-progress: true
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/publish-cdn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ run-name: Publish CDN artifacts - versioned by @${{ github.actor }}
on:
workflow_dispatch:

permissions:
contents: read

concurrency:
group: deploy-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -26,7 +29,7 @@ jobs:
run: yarn install
- name: Build cdn folder
run: yarn build:cdn
- uses: jakejarvis/s3-sync-action@master
- uses: jakejarvis/s3-sync-action@7ed8b112447abb09f1da74f3466e4194fc7a6311 # master
with:
args: --acl public-read --follow-symlinks
env:
Expand All @@ -37,7 +40,7 @@ jobs:
AWS_S3_ENDPOINT: https://${{ secrets.COMMON_COS_ENDPOINT }}
SOURCE_DIR: 'cdn'
DEST_DIR: '/common/carbon/plex'
- uses: jakejarvis/s3-sync-action@master
- uses: jakejarvis/s3-sync-action@7ed8b112447abb09f1da74f3466e4194fc7a6311 # master
with:
args: --acl public-read --follow-symlinks
env:
Expand Down
37 changes: 34 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@
"husky": "^7.0.4",
"lerna": "^8.1.2",
"lint-staged": "^12.4.2",
"postcss": "^8.2.1",
"postcss": "^8.5.23",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"sass": "^1.77.2",
"server": "^1.0.39",
"start-server-and-test": "^1.14.0",
"webpack": "^5.93.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"prettier": {
Expand Down Expand Up @@ -82,7 +82,38 @@
"dependencies": {
"@carbon/ibmdotcom-services": "^2.11.1",
"@carbon/ibmdotcom-utilities": "^2.11.1",
"glob": "^10.3.12",
"glob": "^10.5.0",
"minimist": "^1.2.8"
},
"resolutions": {
"@babel/runtime": "^7.26.10",
"@cypress/request": "^3.0.0",
"axios": "^1.12.0",
"body-parser": "^1.20.3",
"brace-expansion": "^2.1.4",
"braces": "^3.0.3",
"browserslist": "^4.28.7",
"cookie": "^0.7.0",
"cross-spawn": "^7.0.5",
"decode-uri-component": "^0.5.0",
"dompurify": "^3.4.13",
"engine.io": "^6.6.7",
"express": "^4.20.0",
"follow-redirects": "^1.16.0",
"form-data": "^4.0.4",
"formidable": "^2.1.3",
"immutable": "^4.3.9",
"ip-address": "^10.3.1",
"js-yaml": "^4.3.2",
"lodash": "^4.17.23",
"nanoid": "^3.3.12",
"on-headers": "^1.1.0",
"qs": "^6.14.1",
"send": "^0.19.0",
"serve-static": "^1.16.0",
"socket.io-parser": "^4.2.7",
"tar": "^7.5.4",
"tmp": "^0.2.4",
"ws": "^8.17.1"
}
}
Loading