From c075327e5f66779b0fef51e4549eecf98b53db3c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 09:55:15 +0100 Subject: [PATCH 1/4] chore(deps): bump pnpm/action-setup from 3 to 4 (#1709) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aram <37216945+alimpens@users.noreply.github.com> --- .github/workflows/feature-branch-deploy.yml | 2 +- .github/workflows/lint-test.yml | 2 +- .github/workflows/publish.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/feature-branch-deploy.yml b/.github/workflows/feature-branch-deploy.yml index 6cc49ed2ca..8b416e34a4 100644 --- a/.github/workflows/feature-branch-deploy.yml +++ b/.github/workflows/feature-branch-deploy.yml @@ -35,7 +35,7 @@ jobs: with: node-version-file: .nvmrc - - uses: pnpm/action-setup@v3 + - uses: pnpm/action-setup@v4 name: Install pnpm id: pnpm-install with: diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index df912d2420..efb62258ad 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -19,7 +19,7 @@ jobs: node-version-file: .nvmrc - name: Install pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 id: pnpm-install with: run_install: false diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a3d4416162..d523b5acf4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,7 @@ jobs: if: ${{ steps.release.outputs.releases_created == 'true' }} - name: Install pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 id: pnpm-install with: run_install: false From 76411ebd5c09a15f03393f2374725401b01628fc Mon Sep 17 00:00:00 2001 From: Aram <37216945+alimpens@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:12:10 +0100 Subject: [PATCH 2/4] chore: Fix feature branch cleanup workflow (#1730) --- .github/workflows/feature-branch-cleanup.yml | 9 ++++++--- .github/workflows/feature-branch-deploy.yml | 5 ----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/feature-branch-cleanup.yml b/.github/workflows/feature-branch-cleanup.yml index 6d5193c7bc..2820ae60fb 100644 --- a/.github/workflows/feature-branch-cleanup.yml +++ b/.github/workflows/feature-branch-cleanup.yml @@ -19,15 +19,18 @@ jobs: BRANCH_NAME=$(echo $RAW_BRANCH_NAME | sed 's/[^/]*\///') echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV - - name: Check out + - name: Check out branch to access .nvmrc uses: actions/checkout@v4 - with: - ref: gh-pages - uses: actions/setup-node@v4 with: node-version-file: .nvmrc + - name: Check out gh-pages branch + uses: actions/checkout@v4 + with: + ref: gh-pages + - name: Delete folder run: | git config --global user.name GitHub Action diff --git a/.github/workflows/feature-branch-deploy.yml b/.github/workflows/feature-branch-deploy.yml index 8b416e34a4..da182dd53a 100644 --- a/.github/workflows/feature-branch-deploy.yml +++ b/.github/workflows/feature-branch-deploy.yml @@ -54,11 +54,6 @@ jobs: run: | touch ./storybook/dist/${{ github.sha }}.txt - # Our workflows use .nvmrc instead of a fixed version, so we need to copy this file over - # to the dist files for use in the feature branch cleanup workflow - - name: Copy over .nvmrc to dist - run: cp .nvmrc ./storybook/dist/ - - name: Pushing to pages branch uses: JamesIves/github-pages-deploy-action@v4 with: From be0cf82a147ebdacc44903eb72a3840926f77886 Mon Sep 17 00:00:00 2001 From: Niels Roozemond Date: Fri, 1 Nov 2024 04:37:09 +0100 Subject: [PATCH 3/4] fix: Broken link Dialog docs (#1731) --- packages/css/src/components/dialog/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/css/src/components/dialog/README.md b/packages/css/src/components/dialog/README.md index 00196bd171..33e4931c5a 100644 --- a/packages/css/src/components/dialog/README.md +++ b/packages/css/src/components/dialog/README.md @@ -9,7 +9,7 @@ A Dialog allows the user to focus on one task or a piece of information by poppi - Use dialogs sparingly because they interrupt the user’s workflow. - Use a dialog for short and non-frequent tasks. Consider using the main flow for regular tasks. -- Wrap multiple buttons in an [Action Group](https://designsystem.amsterdam/?path=/docs/components-buttons-action-group--docs). +- Wrap multiple buttons in an [Action Group](https://designsystem.amsterdam/?path=/docs/components-layout-action-group--docs). ## Keyboard support From 753d91bc6ad0eed7ca467741889f643a70d36d68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 10:02:29 +0100 Subject: [PATCH 4/4] chore(deps): bump dawidd6/action-download-artifact from 3 to 6 (#1710) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aram <37216945+alimpens@users.noreply.github.com> --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d523b5acf4..d176581128 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -75,7 +75,7 @@ jobs: # The logic below handles the Storybook deploy: - name: "Restore build artifact: Storybook" - uses: dawidd6/action-download-artifact@v3 + uses: dawidd6/action-download-artifact@v6 with: workflow: "lint-test.yml" name: storybook