Skip to content

Commit f69d2d7

Browse files
committed
Merge remote-tracking branch 'origin/main' into davidkna-sap_audit-2026-06-17
* origin/main: chore(setup): Assume availability of registry mirror in more cases (#6682) chore(deps-dev): bump multer from 2.1.1 to 2.2.0 (#6685) chore: Remove `puppeteer` and fix `npm-stats` script (#6646)
2 parents 410f2bc + cb8801d commit f69d2d7

6 files changed

Lines changed: 109 additions & 400 deletions

File tree

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151
env:
5252
REGISTRY_URL: ${{ inputs.registry-url }}
5353
REGISTRY_TOKEN: ${{ inputs.registry-token }}
54-
IS_FORK: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login == 'sap' && 'false' || 'true' }}
54+
IS_FORK: ${{ (github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == 'sap' || github.event.pull_request.user.login == 'dependabot[bot]') && 'false' || 'true' }}
5555
shell: bash
5656
run: |
5757
if [[ -n "$REGISTRY_URL" ]]; then

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@
6161
"@eslint/js": "^10.0.1",
6262
"@jest/globals": "^30.3.0",
6363
"@sap-cloud-sdk/connectivity": "workspace:^",
64-
"@sap-cloud-sdk/util": "workspace:^",
6564
"@sap-cloud-sdk/odata-common": "workspace:^",
6665
"@sap-cloud-sdk/odata-v2": "workspace:^",
6766
"@sap-cloud-sdk/odata-v4": "workspace:^",
67+
"@sap-cloud-sdk/util": "workspace:^",
6868
"@types/jest": "^30.0.0",
6969
"@types/jsonwebtoken": "^9.0.10",
7070
"@types/node": "^22.19.15",
@@ -80,13 +80,13 @@
8080
"madge": "^8.0.0",
8181
"memfs": "^4.57.2",
8282
"prettier": "^3.8.1",
83-
"puppeteer": "^24.40.0",
8483
"semver": "^7.7.4",
8584
"ts-jest": "^29.4.9",
8685
"ts-node": "^10.9.2",
8786
"turbo": "^2.9.6",
8887
"typedoc": "^0.28.18",
8988
"typescript": "~5.9.3",
9089
"unionfs": "^4.6.0"
91-
}
90+
},
91+
"dependencies": {}
9292
}

0 commit comments

Comments
 (0)