From 841888c20f89bc750787786ce5671c709c415091 Mon Sep 17 00:00:00 2001 From: Achilleas Anagnostopoulos Date: Sun, 19 May 2024 08:12:50 +0100 Subject: [PATCH] Always use stable sdk for CI runs Some of the newer linter features require a more recent SDK. Forcing the use of the "stable" SDK for CI runs should ensure that we don't accidentally miss a lint warning that pub catches after a new version is published. --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 52548f8..4f387ca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,6 +12,8 @@ jobs: - name: Setup Dart SDK uses: dart-lang/setup-dart@v1 + with: + sdk: stable - name: Prepare RabbitMQ configuration run: |