Skip to content

Commit 25e6d5a

Browse files
committed
Merge branch 'main' into refactor-migrated-package-manager-to-pnpm
2 parents 11c8861 + 025844e commit 25e6d5a

File tree

19 files changed

+48
-44
lines changed

19 files changed

+48
-44
lines changed

.github/workflows/00-scan-secrets.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,16 @@ jobs:
1212
with:
1313
fetch-depth: 0
1414

15-
- name: ↔ Extract branch name
16-
uses: ./.github/actions/extract-branch
17-
id: extract_branch
18-
15+
# https://github.com/marketplace/actions/trufflehog-oss#advanced-usage-scan-entire-branch
1916
- name: 🐷 TruffleHog OSS
2017
if: ${{ github.event.pull_request != null }} # only scan on pull-requests
2118
uses: trufflesecurity/trufflehog@main
2219
with:
23-
path: ./
24-
base: ${{ steps.extract_branch.outputs.branch-name }}
25-
head: HEAD
20+
# Setting base to an empty string scans the entire branch, per TruffleHog OSS advanced usage:
21+
# https://github.com/marketplace/actions/trufflehog-oss#advanced-usage-scan-entire-branch
22+
base: ""
23+
head: ${{ github.ref_name }}
24+
extra_args: --results=verified,unknown
2625

2726
- name: 💀 Killing me softly
2827
uses: ./.github/actions/cancel-workflow

.github/workflows/01-init-playwright.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
# TODO: enable again after guidepup controlling Voiceover on MacOS 14 and 15 gets more stable
18-
# os: [macos-13, windows-2022]
19-
os: [windows-2022] # macOS is not perfectly supported yet, we disable it for now
17+
os: [macos-14, windows-2022]
2018
steps:
2119
- name: ⏬ Checkout repo
2220
uses: actions/checkout@v4

.github/workflows/02-e2e-screen-reader.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
# TODO: enable again after guidepup controlling Voiceover on MacOS 14 and 15 gets more stable
22-
# os: [macos-13, windows-2022]
23-
os: [windows-2022] # macOS is not perfectly supported yet, we disable it for now
21+
os: [macos-14, windows-2022]
2422
shardIndex: [1, 2, 3, 4]
2523
shardTotal: [4]
2624
steps:

.github/workflows/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ jobs:
295295

296296
deploy:
297297
uses: ./.github/workflows/03-deploy-gh-pages.yml
298-
if: ${{ github.actor != 'dependabot[bot]' && (github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ux-design-system') }}
298+
if: ${{ !cancelled() && github.actor != 'dependabot[bot]' && (github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ux-design-system') }}
299299
needs: [checks-done]
300300
with:
301301
release: false

.stackblitzrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"startCommand": "npm run build && npm run start"
3+
}

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ We're providing a detailed migration for each component next to the documentatio
9292

9393
Check our migration docs for breaking changes:
9494

95-
1. [AlphaBeta](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/alpha-beta.md) (0.0.x➡0.x.x)
96-
2. [v0.2v0.3](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.2.x-to-v0.3.x.md)
97-
3. [v0.3v0.4](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.3.x-to-v0.4.x.md)
98-
4. v0.4 ➡ v0.5: no migration needed, no breaking changes
99-
5. [v0.5 ➡ v0.6](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.5.x-to-v0.6.x.md)
100-
6. [v0.6 ➡ v0.7](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.6.x-to-v0.7.x.md)
101-
7. [v0.7v1.0](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.7.x-to-v1.0.0.md)
102-
8. [v1.xv2.0](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v1.x.x-to-v2.0.0.md)
103-
9. [v2.xv3.0](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v2.x.x-to-v3.0.0.md)
95+
- [v2.xv3.0](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v2.x.x-to-v3.0.0.md)
96+
- [v1.xv2.0](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v1.x.x-to-v2.0.0.md)
97+
- [v0.7v1.0](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.7.x-to-v1.0.0.md)
98+
- [v0.6 ➡ v0.7](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.6.x-to-v0.7.x.md)
99+
- [v0.5 ➡ v0.6](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.5.x-to-v0.6.x.md)
100+
- v0.4 ➡ v0.5: no migration needed, no breaking changes
101+
- [v0.3v0.4](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.3.x-to-v0.4.x.md)
102+
- [v0.2v0.3](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/v0.2.x-to-v0.3.x.md)
103+
- [AlphaBeta](https://github.com/db-ux-design-system/core-web/blob/main/docs/migration/alpha-beta.md) (0.0.x➡0.x.x)
104104

105105
## FAQ
106106

Loading
-2 Bytes
Loading
Loading
0 Bytes
Loading

0 commit comments

Comments
 (0)