From c311fcee8423f4168621309c55237ec4de0047fa Mon Sep 17 00:00:00 2001 From: Matthew Nitschke Date: Wed, 16 Oct 2024 18:04:24 +0000 Subject: [PATCH 1/3] Migrates to workiva_analysis_options v2 --- analysis_options.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analysis_options.yaml b/analysis_options.yaml index f09d80b..a67a6c8 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -1 +1 @@ -include: package:workiva_analysis_options/v1.yaml +include: package:workiva_analysis_options/v2.yaml From 57fde643539ef91869086ab92ef53b7fad398467 Mon Sep 17 00:00:00 2001 From: Dustin Pauze Date: Thu, 17 Oct 2024 07:01:45 -0400 Subject: [PATCH 2/3] FEDX-1716: code cleanup --- .github/workflows/dart_ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dart_ci.yaml b/.github/workflows/dart_ci.yaml index 521d03a..678d8d5 100644 --- a/.github/workflows/dart_ci.yaml +++ b/.github/workflows/dart_ci.yaml @@ -31,5 +31,6 @@ jobs: run: dart test - uses: anchore/sbom-action@v0 with: - path: ./ + artifact-name: sbom_${{ matrix.sdk }}.spdx format: cyclonedx-json + path: ./ From 90ecac8a936517b3989fedfdf4a5aed15d186a68 Mon Sep 17 00:00:00 2001 From: Dustin Pauze Date: Sat, 26 Oct 2024 17:23:36 -0400 Subject: [PATCH 3/3] FEDX-1716: delete dart_ci --- .github/workflows/dart_ci.yaml | 36 ---------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/dart_ci.yaml diff --git a/.github/workflows/dart_ci.yaml b/.github/workflows/dart_ci.yaml deleted file mode 100644 index a160451..0000000 --- a/.github/workflows/dart_ci.yaml +++ /dev/null @@ -1,36 +0,0 @@ -name: Dart CI - -on: - push: - branches: - - 'master' - - 'test_consume_*' - pull_request: - branches: - - '**' - -jobs: - test: - runs-on: ubuntu-latest - strategy: - matrix: - sdk: [ stable, beta, dev ] - steps: - - uses: actions/checkout@v2 - - uses: dart-lang/setup-dart@v1 - with: - sdk: ${{ matrix.sdk }} - - name: Install dependencies - run: dart pub get - - name: Check formatting - run: dart format --output=none --set-exit-if-changed . - if: ${{ matrix.sdk == 'stable' }} - - name: Analyze project source - run: dart analyze - - name: Run tests - run: dart test - - uses: anchore/sbom-action@v0 - if: ${{ matrix.sdk == 'stable' }} - with: - path: ./ - format: cyclonedx-json