Skip to content

Commit 20efcdf

Browse files
authored
ci: Fix cache and deprecation issues (#1046)
1 parent ec71870 commit 20efcdf

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,11 @@ jobs:
113113
uses: subosito/flutter-action@v2
114114
with:
115115
channel: "beta"
116-
cache: true
117116
- name: Setup flutter
118117
if: ${{ matrix.sdk != 'beta' }}
119118
uses: subosito/flutter-action@v2
120119
with:
121120
flutter-version: ${{ matrix.sdk }}
122-
cache: true
123121
- name: Install dependencies on Ubuntu and MacOS
124122
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
125123
run: (cd packages/flutter && flutter pub get)

packages/dart/lib/src/network/parse_websocket_html.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/// If you change this file, you should apply the same changes to the 'parse_websocket_io.dart' file
22
library;
33

4+
// ignore: deprecated_member_use
45
import 'dart:html' as html;
56

67
import 'package:web_socket_channel/html.dart';

packages/dart/lib/src/objects/parse_base.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ abstract class ParseBase {
317317
Map<String, dynamic> toPointer() => encodeObject(parseClassName, objectId!);
318318

319319
/// Set the [ParseACL] governing this object.
320-
void setACL<ParseACL>(ParseACL acl) {
320+
void setACL<T>(T acl) {
321321
set(keyVarAcl, acl);
322322
}
323323

0 commit comments

Comments
 (0)