Skip to content

Commit 149463b

Browse files
committed
fix deps
1 parent 4d27024 commit 149463b

File tree

8 files changed

+13
-19
lines changed

8 files changed

+13
-19
lines changed

.github/workflows/native.yaml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ on:
1212
- ".github/workflows/native.yaml"
1313
- "pkgs/code_assets/**"
1414
- "pkgs/data_assets/**"
15-
- 'pkgs/ffi/**'
16-
- 'pkgs/ffigen/**'
15+
- "pkgs/ffi/**"
16+
- "pkgs/ffigen/**"
1717
- "pkgs/hooks/**"
1818
- "pkgs/hooks_runner/**"
1919
- "pkgs/json_syntax_generator/**"
@@ -30,8 +30,8 @@ on:
3030
- ".github/workflows/native.yaml"
3131
- "pkgs/code_assets/**"
3232
- "pkgs/data_assets/**"
33-
- 'pkgs/ffi/**'
34-
- 'pkgs/ffigen/**'
33+
- "pkgs/ffi/**"
34+
- "pkgs/ffigen/**"
3535
- "pkgs/hooks/**"
3636
- "pkgs/hooks_runner/**"
3737
- "pkgs/json_syntax_generator/**"
@@ -80,14 +80,8 @@ jobs:
8080
- name: Build test dylib and bindings
8181
run: dart --enable-asserts pkgs/ffigen/test/setup.dart
8282

83-
- name: Run pub get, analysis, formatting, generators, and tests.
84-
# Don't run examples on stable, the experiment is not available on stable.
85-
run: dart tool/ci.dart --all --no-example
86-
if: ${{ matrix.sdk == 'stable' }}
87-
8883
- name: Run pub get, analysis, formatting, generators, tests, and examples.
8984
run: dart tool/ci.dart --all
90-
if: ${{ matrix.sdk != 'stable' }}
9185

9286
- name: Upload coverage
9387
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b

pkgs/code_assets/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies:
2424
hooks: ^1.0.0
2525

2626
dev_dependencies:
27-
custom_lint: ^0.7.5
27+
custom_lint: ^0.8.1
2828
dart_flutter_team_lints: ^3.5.2
2929
json_schema: ^5.2.0 # May only be used in tool/ and test/json_schema/.
3030
native_test_helpers:

pkgs/data_assets/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies:
2020
hooks: ^1.0.0
2121

2222
dev_dependencies:
23-
custom_lint: ^0.7.5
23+
custom_lint: ^0.8.1
2424
dart_flutter_team_lints: ^3.5.2
2525
json_schema: ^5.2.0 # May only be used in tool/ and test/json_schema/.
2626
native_test_helpers:

pkgs/hooks/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies:
3030
dev_dependencies:
3131
args: ^2.6.0
3232
code_assets: ^1.0.0 # Used for running tests with real asset types.
33-
custom_lint: ^0.7.5
33+
custom_lint: ^0.8.1
3434
dart_flutter_team_lints: ^3.5.2
3535
data_assets: any # Used for running tests with real asset types.
3636
file_testing: ^3.0.2

pkgs/hooks_runner/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies:
2626

2727
dev_dependencies:
2828
args: any
29-
custom_lint: ^0.7.5
29+
custom_lint: ^0.8.1
3030
dart_flutter_team_lints: ^3.5.2
3131
data_assets: any # Used in tests.
3232
file_testing: ^3.0.2

pkgs/json_syntax_generator/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies:
1818
json_schema: ^5.2.0
1919

2020
dev_dependencies:
21-
custom_lint: ^0.7.5
21+
custom_lint: ^0.8.1
2222
dart_flutter_team_lints: ^3.5.2
2323
native_test_helpers:
2424
path: ../native_test_helpers/

pkgs/native_toolchain_c/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies:
2626

2727
dev_dependencies:
2828
collection: ^1.19.1
29-
custom_lint: ^0.7.5
29+
custom_lint: ^0.8.1
3030
dart_flutter_team_lints: ^3.5.2
3131
native_test_helpers:
3232
path: ../native_test_helpers/

pkgs/repo_lint_rules/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ environment:
1010
sdk: '>=3.9.0 <4.0.0'
1111

1212
dependencies:
13-
analyzer: ^7.3.0
14-
custom_lint_builder: ^0.7.5
13+
analyzer: ^8.4.0
14+
custom_lint_builder: ^0.8.1
1515
dart_flutter_team_lints: ^3.5.2
1616
path: ^1.9.1
1717

1818
dev_dependencies:
19-
custom_lint: ^0.7.5
19+
custom_lint: ^0.8.1

0 commit comments

Comments
 (0)