From cf2f64cf93316a815910f1491498b3c2cd7d610d Mon Sep 17 00:00:00 2001 From: nickshoust-wf Date: Wed, 3 Apr 2024 08:23:18 -0400 Subject: [PATCH] just use dart 2.19.6 --- .github/workflows/dart_ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dart_ci.yaml b/.github/workflows/dart_ci.yaml index 3415c83..d16af51 100644 --- a/.github/workflows/dart_ci.yaml +++ b/.github/workflows/dart_ci.yaml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - sdk: [ 2.13.4, 2.18.7 ] + sdk: [ 2.19.6 ] steps: - uses: actions/checkout@v2 - uses: dart-lang/setup-dart@v1 @@ -32,13 +32,13 @@ jobs: run: dart pub get - name: Check formatting run: dart format --set-exit-if-changed . - if: ${{ matrix.sdk == '2.18.7' }} + if: ${{ matrix.sdk == '2.19.6' }} - name: Analyze project source run: dart analyze - name: Run tests run: dart test - uses: anchore/sbom-action@v0 - if: ${{ matrix.sdk == '2.18.7' }} + if: ${{ matrix.sdk == '2.19.6' }} with: path: ./ format: cyclonedx-json