Skip to content

Commit

Permalink
update the setup-dart action version
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Nov 9, 2023
1 parent 8014562 commit 0356149
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
- uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
- uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d
with:
sdk: ${{ matrix.sdk }}

Expand Down
2 changes: 2 additions & 0 deletions bin/_boot.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
/// The main entry-point (`bin/grinder.dart`) trampolines into a different
/// script; running with `_boot.dart` instead allows you to hit breakpoints when
/// debugging.
library;

import 'package:grinder/grinder.dart';

Future<dynamic> main(List<String> args) => grind(args);
2 changes: 1 addition & 1 deletion lib/src/cli.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import 'cli_util.dart';
import 'singleton.dart' as singleton;

// This version must be updated in tandem with the pubspec version.
const String appVersion = '0.9.4';
const String appVersion = '0.9.5-wip';

List<String> grinderArgs() {
if (_args == null) fail('grinderArgs() may only be called after grind().');
Expand Down

0 comments on commit 0356149

Please sign in to comment.