From b6cb061e3d610407382b9bfce0d5f40aee01ef87 Mon Sep 17 00:00:00 2001 From: Sydney Jodon Date: Thu, 24 Oct 2024 14:02:36 -0700 Subject: [PATCH] Stop running CI on Dart 2.18.7 --- .github/workflows/dart_ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dart_ci.yml b/.github/workflows/dart_ci.yml index 121836d2..81741c80 100644 --- a/.github/workflows/dart_ci.yml +++ b/.github/workflows/dart_ci.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - sdk: [ 2.18.7, 2.19.6 ] + sdk: [ 2.19.6 ] steps: - uses: actions/checkout@v2 - uses: dart-lang/setup-dart@v0.2 @@ -35,7 +35,7 @@ jobs: - name: Validate formatting run: dart run dart_dev format --check - if: always() && steps.install.outcome == 'success' && matrix.sdk == '2.18.7' + if: always() && steps.install.outcome == 'success' - name: Analyze project source run: dart analyze @@ -45,14 +45,14 @@ jobs: run: | dart run build_runner build --delete-conflicting-outputs git diff --exit-code - if: always() && steps.install.outcome == 'success' && matrix.sdk == '2.19.6' + if: always() && steps.install.outcome == 'success' test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: - sdk: [ 2.18.7, 2.19.6 ] + sdk: [ 2.19.6 ] steps: - uses: actions/checkout@v2 - uses: dart-lang/setup-dart@v0.2 @@ -74,8 +74,6 @@ jobs: - name: Create SBOM Release Asset uses: anchore/sbom-action@v0 - # This fails if it runs more than once within a given build - if: matrix.sdk != '2.18.7' with: path: ./ format: cyclonedx-json