Skip to content

Commit a827443

Browse files
committed
update min sdk
1 parent aef7034 commit a827443

File tree

19 files changed

+50
-50
lines changed

19 files changed

+50
-50
lines changed

.github/workflows/lint.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with package:mono_repo v6.6.2
1+
# Created with package:mono_repo v6.6.3
22
name: Dart Lint CI
33
on:
44
push:
@@ -16,23 +16,23 @@ permissions: read-all
1616

1717
jobs:
1818
job_001:
19-
name: "analyze_format; Dart 3.6.0; PKGS: dartfn, dartfn/templates/cloudevent, dartfn/templates/helloworld, dartfn/templates/json, examples/fullstack/backend, examples/fullstack/frontend-cli, examples/hello, examples/json, examples/protobuf_firestore, examples/raw_cloudevent, functions_framework, functions_framework_builder, google_cloud; `dart analyze`"
19+
name: "analyze_format; Dart 3.8.0; PKGS: dartfn, dartfn/templates/cloudevent, dartfn/templates/helloworld, dartfn/templates/json, examples/fullstack/backend, examples/fullstack/frontend-cli, examples/hello, examples/json, examples/protobuf_firestore, examples/raw_cloudevent, functions_framework, functions_framework_builder, google_cloud; `dart analyze`"
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Cache Pub hosted dependencies
23-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
23+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
2424
with:
2525
path: "~/.pub-cache/hosted"
26-
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.6.0;packages:dartfn-dartfn/templates/cloudevent-dartfn/templates/helloworld-dartfn/templates/json-examples/fullstack/backend-examples/fullstack/frontend-cli-examples/hello-examples/json-examples/protobuf_firestore-examples/raw_cloudevent-functions_framework-functions_framework_builder-google_cloud;commands:analyze_1"
26+
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.8.0;packages:dartfn-dartfn/templates/cloudevent-dartfn/templates/helloworld-dartfn/templates/json-examples/fullstack/backend-examples/fullstack/frontend-cli-examples/hello-examples/json-examples/protobuf_firestore-examples/raw_cloudevent-functions_framework-functions_framework_builder-google_cloud;commands:analyze_1"
2727
restore-keys: |
28-
os:ubuntu-latest;pub-cache-hosted;sdk:3.6.0;packages:dartfn-dartfn/templates/cloudevent-dartfn/templates/helloworld-dartfn/templates/json-examples/fullstack/backend-examples/fullstack/frontend-cli-examples/hello-examples/json-examples/protobuf_firestore-examples/raw_cloudevent-functions_framework-functions_framework_builder-google_cloud
29-
os:ubuntu-latest;pub-cache-hosted;sdk:3.6.0
28+
os:ubuntu-latest;pub-cache-hosted;sdk:3.8.0;packages:dartfn-dartfn/templates/cloudevent-dartfn/templates/helloworld-dartfn/templates/json-examples/fullstack/backend-examples/fullstack/frontend-cli-examples/hello-examples/json-examples/protobuf_firestore-examples/raw_cloudevent-functions_framework-functions_framework_builder-google_cloud
29+
os:ubuntu-latest;pub-cache-hosted;sdk:3.8.0
3030
os:ubuntu-latest;pub-cache-hosted
3131
os:ubuntu-latest
3232
- name: Setup Dart SDK
3333
uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
3434
with:
35-
sdk: "3.6.0"
35+
sdk: "3.8.0"
3636
- id: checkout
3737
name: Checkout repository
3838
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -158,7 +158,7 @@ jobs:
158158
runs-on: ubuntu-latest
159159
steps:
160160
- name: Cache Pub hosted dependencies
161-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
161+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
162162
with:
163163
path: "~/.pub-cache/hosted"
164164
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:dartfn-dartfn/templates/cloudevent-dartfn/templates/helloworld-dartfn/templates/json-examples/fullstack/backend-examples/fullstack/frontend-cli-examples/hello-examples/json-examples/protobuf_firestore-examples/raw_cloudevent-functions_framework-functions_framework_builder-google_cloud-integration_test;commands:format-analyze_0"
@@ -361,7 +361,7 @@ jobs:
361361
runs-on: ubuntu-latest
362362
steps:
363363
- name: Cache Pub hosted dependencies
364-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
364+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
365365
with:
366366
path: "~/.pub-cache/hosted"
367367
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:integration_test;commands:analyze_1"
@@ -391,7 +391,7 @@ jobs:
391391
runs-on: ubuntu-latest
392392
steps:
393393
- name: Cache Pub hosted dependencies
394-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
394+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
395395
with:
396396
path: "~/.pub-cache/hosted"
397397
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:examples/fullstack/frontend;commands:format-analyze_2"
@@ -401,7 +401,7 @@ jobs:
401401
os:ubuntu-latest;pub-cache-hosted
402402
os:ubuntu-latest
403403
- name: Setup Flutter SDK
404-
uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e
404+
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
405405
with:
406406
channel: stable
407407
- id: checkout

.github/workflows/unit.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Created with package:mono_repo v6.6.2
1+
# Created with package:mono_repo v6.6.3
22
name: Dart Unit CI
33
on:
44
push:
@@ -16,23 +16,23 @@ permissions: read-all
1616

1717
jobs:
1818
job_001:
19-
name: "unit_test; linux; Dart 3.6.0; PKGS: dartfn, functions_framework_builder, google_cloud, integration_test; `dart test`"
19+
name: "unit_test; linux; Dart 3.8.0; PKGS: dartfn, functions_framework_builder, google_cloud, integration_test; `dart test`"
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Cache Pub hosted dependencies
23-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
23+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
2424
with:
2525
path: "~/.pub-cache/hosted"
26-
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.6.0;packages:dartfn-functions_framework_builder-google_cloud-integration_test;commands:test_0"
26+
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.8.0;packages:dartfn-functions_framework_builder-google_cloud-integration_test;commands:test_0"
2727
restore-keys: |
28-
os:ubuntu-latest;pub-cache-hosted;sdk:3.6.0;packages:dartfn-functions_framework_builder-google_cloud-integration_test
29-
os:ubuntu-latest;pub-cache-hosted;sdk:3.6.0
28+
os:ubuntu-latest;pub-cache-hosted;sdk:3.8.0;packages:dartfn-functions_framework_builder-google_cloud-integration_test
29+
os:ubuntu-latest;pub-cache-hosted;sdk:3.8.0
3030
os:ubuntu-latest;pub-cache-hosted
3131
os:ubuntu-latest
3232
- name: Setup Dart SDK
3333
uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
3434
with:
35-
sdk: "3.6.0"
35+
sdk: "3.8.0"
3636
- id: checkout
3737
name: Checkout repository
3838
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -73,23 +73,23 @@ jobs:
7373
if: "always() && steps.integration_test_pub_upgrade.conclusion == 'success'"
7474
working-directory: integration_test
7575
job_002:
76-
name: "unit_test; linux; Dart 3.6.0; PKG: google_cloud; `./tool/docker_test_script.sh`"
76+
name: "unit_test; linux; Dart 3.8.0; PKG: google_cloud; `./tool/docker_test_script.sh`"
7777
runs-on: ubuntu-latest
7878
steps:
7979
- name: Cache Pub hosted dependencies
80-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
80+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
8181
with:
8282
path: "~/.pub-cache/hosted"
83-
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.6.0;packages:google_cloud;commands:command"
83+
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.8.0;packages:google_cloud;commands:command"
8484
restore-keys: |
85-
os:ubuntu-latest;pub-cache-hosted;sdk:3.6.0;packages:google_cloud
86-
os:ubuntu-latest;pub-cache-hosted;sdk:3.6.0
85+
os:ubuntu-latest;pub-cache-hosted;sdk:3.8.0;packages:google_cloud
86+
os:ubuntu-latest;pub-cache-hosted;sdk:3.8.0
8787
os:ubuntu-latest;pub-cache-hosted
8888
os:ubuntu-latest
8989
- name: Setup Dart SDK
9090
uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
9191
with:
92-
sdk: "3.6.0"
92+
sdk: "3.8.0"
9393
- id: checkout
9494
name: Checkout repository
9595
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -107,7 +107,7 @@ jobs:
107107
runs-on: ubuntu-latest
108108
steps:
109109
- name: Cache Pub hosted dependencies
110-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
110+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
111111
with:
112112
path: "~/.pub-cache/hosted"
113113
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:dartfn-dartfn/templates/cloudevent-dartfn/templates/helloworld-dartfn/templates/json-examples/fullstack/backend-examples/hello-examples/json-examples/protobuf_firestore-examples/raw_cloudevent-functions_framework_builder-google_cloud-integration_test;commands:test_0"
@@ -236,7 +236,7 @@ jobs:
236236
runs-on: ubuntu-latest
237237
steps:
238238
- name: Cache Pub hosted dependencies
239-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
239+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
240240
with:
241241
path: "~/.pub-cache/hosted"
242242
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:dartfn-functions_framework-integration_test;commands:test_1"
@@ -280,23 +280,23 @@ jobs:
280280
if: "always() && steps.integration_test_pub_upgrade.conclusion == 'success'"
281281
working-directory: integration_test
282282
job_005:
283-
name: "unit_test; macos; Dart 3.6.0; PKG: google_cloud; `dart test`"
283+
name: "unit_test; macos; Dart 3.8.0; PKG: google_cloud; `dart test`"
284284
runs-on: macos-latest
285285
steps:
286286
- name: Cache Pub hosted dependencies
287-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
287+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
288288
with:
289289
path: "~/.pub-cache/hosted"
290-
key: "os:macos-latest;pub-cache-hosted;sdk:3.6.0;packages:google_cloud;commands:test_0"
290+
key: "os:macos-latest;pub-cache-hosted;sdk:3.8.0;packages:google_cloud;commands:test_0"
291291
restore-keys: |
292-
os:macos-latest;pub-cache-hosted;sdk:3.6.0;packages:google_cloud
293-
os:macos-latest;pub-cache-hosted;sdk:3.6.0
292+
os:macos-latest;pub-cache-hosted;sdk:3.8.0;packages:google_cloud
293+
os:macos-latest;pub-cache-hosted;sdk:3.8.0
294294
os:macos-latest;pub-cache-hosted
295295
os:macos-latest
296296
- name: Setup Dart SDK
297297
uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
298298
with:
299-
sdk: "3.6.0"
299+
sdk: "3.8.0"
300300
- id: checkout
301301
name: Checkout repository
302302
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -314,7 +314,7 @@ jobs:
314314
runs-on: macos-latest
315315
steps:
316316
- name: Cache Pub hosted dependencies
317-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
317+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
318318
with:
319319
path: "~/.pub-cache/hosted"
320320
key: "os:macos-latest;pub-cache-hosted;sdk:dev;packages:google_cloud;commands:test_0"

dartfn/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage: https://github.com/GoogleCloudPlatform/functions-framework-dart
77

88
resolution: workspace
99
environment:
10-
sdk: ^3.6.0
10+
sdk: ^3.8.0
1111

1212
executables:
1313
dartfn:

dartfn/templates/cloudevent/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: A sample Functions Framework project for handling a cloudevent.
55
publish_to: none
66

77
environment:
8-
sdk: ^3.6.0
8+
sdk: ^3.8.0
99

1010
dependencies:
1111
functions_framework: ^0.4.0

dartfn/templates/helloworld/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: A sample "Hello, World!" Functions Framework project.
55
publish_to: none
66

77
environment:
8-
sdk: ^3.6.0
8+
sdk: ^3.8.0
99

1010
dependencies:
1111
functions_framework: ^0.4.0

dartfn/templates/json/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: A sample Functions Framework project for handling JSON.
55
publish_to: none
66

77
environment:
8-
sdk: ^3.6.0
8+
sdk: ^3.8.0
99

1010
dependencies:
1111
functions_framework: ^0.4.0

examples/fullstack/backend/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ publish_to: none
33

44
resolution: workspace
55
environment:
6-
sdk: ^3.6.0
6+
sdk: ^3.8.0
77

88
dependencies:
99
functions_framework: ^0.4.0

examples/fullstack/frontend-cli/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ publish_to: none
33

44
resolution: workspace
55
environment:
6-
sdk: ^3.6.0
6+
sdk: ^3.8.0
77

88
executables:
99
greet:

examples/fullstack/frontend/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: fullstack_demo_frontend
22
publish_to: 'none'
33

44
environment:
5-
sdk: ^3.6.0
5+
sdk: ^3.8.0
66

77
dependencies:
88
cupertino_icons: ^1.0.2

examples/hello/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish_to: none
66

77
resolution: workspace
88
environment:
9-
sdk: ^3.6.0
9+
sdk: ^3.8.0
1010

1111
dependencies:
1212
functions_framework: ^0.4.0

0 commit comments

Comments
 (0)