From e3bf992deb5e1d400c47fef376d5f2e700020f35 Mon Sep 17 00:00:00 2001 From: Devon <122382412+devon-sil@users.noreply.github.com> Date: Fri, 12 Jul 2024 13:27:11 -0400 Subject: [PATCH 1/4] Remove deepfactor --- .github/workflows/deepfactor.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/deepfactor.yml diff --git a/.github/workflows/deepfactor.yml b/.github/workflows/deepfactor.yml deleted file mode 100644 index 6a43ba8e..00000000 --- a/.github/workflows/deepfactor.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: deepfactor-scan -on: - push: - branches: [ main, develop, feature/deepfactor ] -jobs: - build: - runs-on: ubuntu-latest - container: - image: public.ecr.aws/deepfactor/df/runtime:3.3.3-2346 - env: - DF_RUN_TOKEN: ${{ secrets.DF_RUN_TOKEN }} - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Scan with Deepfactor - run: dfctl scan -s fs -a ${{ github.event.repository.name }} -c ${{ github.event.repository.name }} -V ${{ github.ref_name }} . From 47c85bbefa0889913ad0a57f1db6465907bb615f Mon Sep 17 00:00:00 2001 From: Devon <122382412+devon-sil@users.noreply.github.com> Date: Fri, 12 Jul 2024 13:30:20 -0400 Subject: [PATCH 2/4] Remove Deepfactor scan workflow --- .github/workflows/deepfactor.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/deepfactor.yml diff --git a/.github/workflows/deepfactor.yml b/.github/workflows/deepfactor.yml deleted file mode 100644 index 6a43ba8e..00000000 --- a/.github/workflows/deepfactor.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: deepfactor-scan -on: - push: - branches: [ main, develop, feature/deepfactor ] -jobs: - build: - runs-on: ubuntu-latest - container: - image: public.ecr.aws/deepfactor/df/runtime:3.3.3-2346 - env: - DF_RUN_TOKEN: ${{ secrets.DF_RUN_TOKEN }} - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Scan with Deepfactor - run: dfctl scan -s fs -a ${{ github.event.repository.name }} -c ${{ github.event.repository.name }} -V ${{ github.ref_name }} . From 275d2b9f0944e82da7b275f043afc11b6e9296c1 Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Mon, 19 Aug 2024 10:41:54 +0930 Subject: [PATCH 3/4] fix(Drawer): fix A11y warning in Drawer --- components/mdc/Drawer/Drawer.svelte | 91 ++++++++++++++++------------- 1 file changed, 49 insertions(+), 42 deletions(-) diff --git a/components/mdc/Drawer/Drawer.svelte b/components/mdc/Drawer/Drawer.svelte index 84cdfb92..48b11f8a 100644 --- a/components/mdc/Drawer/Drawer.svelte +++ b/components/mdc/Drawer/Drawer.svelte @@ -118,6 +118,11 @@ main { .main-content-height { height: var(--mdc-drawer-height); } +.drawer-menu { + display: flex; + flex-direction: column; + padding: 0; +} @@ -138,50 +143,52 @@ main { -