From edb6ac082462aead7257ceb1e8c127434ea96d96 Mon Sep 17 00:00:00 2001 From: Matthew Nitschke Date: Sun, 28 May 2023 16:59:59 -0600 Subject: [PATCH 1/3] added dependabot --- .github/dependabot.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 00000000..178c5879 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "pub" + directory: "/" + schedule: + interval: "weekly" \ No newline at end of file From 18c0017e05730915cfca2e7ba378478ba3e38650 Mon Sep 17 00:00:00 2001 From: Matthew Nitschke Date: Sun, 28 May 2023 17:01:10 -0600 Subject: [PATCH 2/3] minor rename of dependabot file --- .github/{dependabot.yaml => dependabot.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{dependabot.yaml => dependabot.yml} (100%) diff --git a/.github/dependabot.yaml b/.github/dependabot.yml similarity index 100% rename from .github/dependabot.yaml rename to .github/dependabot.yml From 0f3c19f747e7ee39efcd53a9ac79ffec6178f7fc Mon Sep 17 00:00:00 2001 From: Matthew Nitschke Date: Tue, 30 May 2023 10:22:54 -0600 Subject: [PATCH 3/3] fixed version used in CI --- .github/workflows/checks.yaml | 4 ++-- .github/workflows/tests.yaml | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 75727209..0499a6cf 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v3 - uses: dart-lang/setup-dart@v1 with: - sdk: stable + sdk: 2.18.7 - run: dart pub get - run: dart run dart_dev format @@ -20,6 +20,6 @@ jobs: - uses: actions/checkout@v3 - uses: dart-lang/setup-dart@v1 with: - sdk: stable + sdk: 2.18.7 - run: dart pub get - run: dart run dependency_validator \ No newline at end of file diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 876ae095..97b5ee0b 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -27,7 +27,7 @@ jobs: - name: pub get snapshots directory run: dart pub get working-directory: ./snapshots/input/basic-project - + - name: Snapshots Diff Check run: | dart run scip_dart ./snapshots/input/basic-project @@ -46,7 +46,7 @@ jobs: consumer: runs-on: ubuntu-latest - + strategy: matrix: repo: ["Workiva/over_react", "rrousselGit/provider", "dart-lang/args"] @@ -55,6 +55,8 @@ jobs: # Setup scip-dart - uses: actions/checkout@v3 - uses: dart-lang/setup-dart@v1 + with: + sdk: 2.18.7 - run: dart pub get # Setup repo to run on