Skip to content

Commit e82152d

Browse files
committed
Merge branch 'main' into refactor-migrated-package-manager-to-pnpm
2 parents 38e708c + 0b90481 commit e82152d

File tree

72 files changed

+484
-157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+484
-157
lines changed

.github/workflows/00-init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⏬ Checkout repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: 🔄 Init Cache Default
1515
uses: ./.github/actions/npm-cache

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
99
steps:
1010
- name: ⏬ Checkout repo
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212
with:
1313
fetch-depth: 0
1414

.github/workflows/01-build-outputs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,37 +10,37 @@ jobs:
1010
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1111
steps:
1212
- name: ⏬ Checkout repo
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: 🔄 Init Cache
1616
uses: ./.github/actions/npm-cache
1717

1818
- name: ⏬ Download foundations build
19-
uses: actions/download-artifact@v4
19+
uses: actions/download-artifact@v5
2020
with:
2121
name: db-ux-foundations-build
2222
path: packages/foundations/build
2323

2424
- name: ⏬ Download components build
25-
uses: actions/download-artifact@v4
25+
uses: actions/download-artifact@v5
2626
with:
2727
name: db-ux-components-build
2828
path: packages/components/build
2929

3030
- name: ⏬ Download migration build
31-
uses: actions/download-artifact@v4
31+
uses: actions/download-artifact@v5
3232
with:
3333
name: db-ux-migration-build
3434
path: packages/migration/build
3535

3636
- name: ⏬ Download stylelint build
37-
uses: actions/download-artifact@v4
37+
uses: actions/download-artifact@v5
3838
with:
3939
name: db-ux-stylelint-build
4040
path: packages/stylelint/build
4141

4242
- name: ⏬ Download output
43-
uses: actions/download-artifact@v4
43+
uses: actions/download-artifact@v5
4444
with:
4545
name: db-ux-output
4646
path: output

.github/workflows/01-build-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1111
steps:
1212
- name: ⏬ Checkout repo
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: 🔄 Init Cache
1616
uses: ./.github/actions/npm-cache

.github/workflows/01-build-patternhub.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,25 @@ jobs:
2525
path: ${{ steps.build.outputs.path }}
2626
steps:
2727
- name: ⏬ Checkout repo
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: 🔄 Init Cache
3131
uses: ./.github/actions/npm-cache
3232

3333
- name: ⏬ Download foundations build
34-
uses: actions/download-artifact@v4
34+
uses: actions/download-artifact@v5
3535
with:
3636
name: db-ux-foundations-build
3737
path: packages/foundations/build
3838

3939
- name: ⏬ Download output
40-
uses: actions/download-artifact@v4
40+
uses: actions/download-artifact@v5
4141
with:
4242
name: db-ux-output
4343
path: output
4444

4545
- name: ⏬ Download components build
46-
uses: actions/download-artifact@v4
46+
uses: actions/download-artifact@v5
4747
with:
4848
name: db-ux-components-build
4949
path: packages/components/build

.github/workflows/01-build-showcases.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ jobs:
1414
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1515
steps:
1616
- name: ⏬ Checkout repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: 🔄 Init Cache
2020
uses: ./.github/actions/npm-cache
2121

2222
- name: ⏬ Download foundations build
23-
uses: actions/download-artifact@v4
23+
uses: actions/download-artifact@v5
2424
with:
2525
name: db-ux-foundations-build
2626
path: packages/foundations/build
2727

2828
- name: ⏬ Download output
29-
uses: actions/download-artifact@v4
29+
uses: actions/download-artifact@v5
3030
with:
3131
name: db-ux-output
3232
path: output
3333

3434
- name: ⏬ Download components build
35-
uses: actions/download-artifact@v4
35+
uses: actions/download-artifact@v5
3636
with:
3737
name: db-ux-components-build
3838
path: packages/components/build

.github/workflows/01-get-playwright-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
version: ${{ steps.version.outputs.version }}
1717
steps:
1818
- name: ⏬ Checkout repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: 🔄 Init Cache
2222
uses: ./.github/actions/npm-cache

.github/workflows/01-get-publish-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
version: ${{ steps.getVersion.outputs.version }}
2626
steps:
2727
- name: ⏬ Checkout repo
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: 🔄 Init Cache
3131
uses: ./.github/actions/npm-cache

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
os: [macos-14, windows-2022]
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
1820
steps:
1921
- name: ⏬ Checkout repo
20-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2123

2224
- name: 🔄 Init Cache Default
2325
uses: ./.github/actions/npm-cache

.github/workflows/01-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⏬️ Checkout repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: 🔄 Init Cache
1515
uses: ./.github/actions/npm-cache

0 commit comments

Comments
 (0)