Skip to content

Commit

Permalink
chore(release): pull release/3.72.0-SDK-2873 into main (#2003)
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumarrs authored Jan 20, 2025
2 parents 6f50a3c + 4eef35a commit 09ff745
Show file tree
Hide file tree
Showing 66 changed files with 19,409 additions and 19,196 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-sanity-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
echo "CURRENT_VERSION_VALUE=$current_version" >> $GITHUB_ENV
echo "DATE=$(date)" >> $GITHUB_ENV
echo "BUGSNAG_RELEASE_STAGE=${{ inputs.environment }}" >> $GITHUB_ENV
if [ "${{ inputs.environment }}" == "staging" ]; then
echo "SDK_CDN_VERSION_PATH_PREFIX=staging/latest/" >> $GITHUB_ENV
echo "SUITE_CDN_PATH=/staging/" >> $GITHUB_ENV
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ permissions:
contents: read # This is required for actions/checkout

env:
NODE_OPTIONS: "--no-warnings"
CACHE_CONTROL_NO_STORE: "\"no-store\""
CACHE_CONTROL_MAX_AGE: "\"max-age=3600\""
NODE_OPTIONS: '--no-warnings'
CACHE_CONTROL_NO_STORE: '"no-store"'
CACHE_CONTROL_MAX_AGE: '"max-age=3600"'

jobs:
deploy:
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
aws s3 cp $core_sdk_path_prefix/legacy/ $s3_path_prefix/ $copy_args
aws s3 cp $core_sdk_path_prefix/modern/ $s3_path_prefix/modern/ $copy_args
aws s3 cp $integration_sdks_path_prefix/legacy/js-integrations/ $s3_path_prefix/js-integrations/ $copy_args
aws s3 cp $integration_sdks_path_prefix/modern/js-integrations/ $s3_path_prefix/modern/js-integrations/ $copy_args
Expand All @@ -310,7 +310,7 @@ jobs:
aws s3 cp $core_sdk_path_prefix/legacy/ $s3_path_prefix/ $copy_args
aws s3 cp $core_sdk_path_prefix/modern/ $s3_path_prefix/modern/ $copy_args
aws s3 cp $integration_sdks_path_prefix/legacy/js-integrations/ $s3_path_prefix/js-integrations/ $copy_args
aws s3 cp $integration_sdks_path_prefix/modern/js-integrations/ $s3_path_prefix/modern/js-integrations/ $copy_args
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
- name: Create GitHub releases
id: create_release
continue-on-error: true
env:
HUSKY: 0
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -96,6 +97,8 @@ jobs:
git checkout -- .nxignore
- name: Create pull request into develop
if: always()
continue-on-error: true
uses: repo-sync/pull-request@v2
with:
source_branch: 'main'
Expand All @@ -106,6 +109,7 @@ jobs:

- name: Send message to Slack channel
id: slack
if: always()
continue-on-error: true
uses: slackapi/[email protected]
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
- name: Execute code quality checks
run: |
npm run check:circular
npm run check:duplicates
- name: Build the project
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
env:
HUSKY: 0
run: |
npm run setup:ci
npm run setup:deps
- name: Check for affected projects
id: check_affected
Expand Down Expand Up @@ -61,8 +61,8 @@ jobs:
run: |
./scripts/fix-reports-path-in-github-runner.sh
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4 changes: 1 addition & 3 deletions .github/workflows/update-cache-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo "Detected $num_cores cores. Using $parallel_jobs parallel jobs."
prefixes=("adobe-analytics-js" "v3" "v1.1")
for prefix in "${prefixes[@]}"; do
echo "Processing prefix: $prefix"
Expand All @@ -64,5 +64,3 @@ jobs:
--metadata-directive REPLACE \
--cache-control '${{ env.cache_control_policy }}'"
done
5 changes: 2 additions & 3 deletions .github/workflows/validate-actor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
GH_TOKEN: ${{ secrets.PAT }}
run: |
actor=${{ github.actor || github.triggering_actor }}
# Use gh api to fetch the membership details
response=$(gh api "/orgs/$ORG_NAME/teams/$TEAM_NAME/memberships/$actor" -H "X-GitHub-Api-Version: 2022-11-28" 2>/dev/null || echo "error")
# Check if API request failed
if [ "$response" = "error" ]; then
echo "Error: Unable to fetch membership details for '$actor'."
Expand All @@ -34,4 +34,3 @@ jobs:
echo "Error: '$actor' is NOT a member of '@${ORG_NAME}/${TEAM_NAME}' team. Access denied."
exit 1
fi
4 changes: 2 additions & 2 deletions examples/angular/sample-app/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
"maximumWarning": "4kb",
"maximumError": "6kb"
}
],
"outputHashing": "all"
Expand Down
Loading

0 comments on commit 09ff745

Please sign in to comment.