Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollout Analyzer 5 #69

Merged
merged 3 commits into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/dart_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
matrix:
sdk: [ stable ]
analyzer:
- ^2.0.0
- ^3.0.0
- ^4.0.0
- ^5.0.0
# Uncomment once we're on Dart 2.19+
# - ^6.0.0
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM google/dart:2 as build
FROM dart:2.18 as build
WORKDIR /build/
ADD pubspec.yaml /build/
RUN dart pub get
Expand Down
9 changes: 3 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
analyzer: '>=2.0.0 <6.0.0'
analyzer: ^5.0.0
args: ^2.0.0
glob: ^2.0.1
io: ^1.0.0
Expand All @@ -19,16 +19,13 @@ dependencies:
quiver: ^3.0.0
source_span: ^1.8.1
stack_trace: ^1.10.0
test: ^1.16.8
test: ^1.21.1
test_descriptor: ^2.0.0

dev_dependencies:
build_runner: ^2.0.1
dart_style: ^2.0.0
dependency_validator: ^3.0.0
meta: ^1.6.0
mockito: '>=5.0.0 <5.3.0' # pin to workaround https://github.com/dart-lang/mockito/issues/552
mockito: ^5.3.2
pedantic: ^1.11.0
dependency_validator:
ignore:
- mockito
Loading