Skip to content

Commit a0ca697

Browse files
authored
[sync] 2024/08/06 (#1474)
2 parents 723f11f + b692fc2 commit a0ca697

File tree

177 files changed

+2175
-542
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+2175
-542
lines changed
+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Scorecards supply-chain security
2+
on:
3+
# Only the default branch is supported.
4+
branch_protection_rule:
5+
push:
6+
branches: [ main ]
7+
8+
# Declare default permissions as read only.
9+
permissions: read-all
10+
11+
jobs:
12+
analysis:
13+
name: Scorecards analysis
14+
runs-on: ubuntu-latest
15+
if: ${{ github.repository == 'flutter/website' }}
16+
permissions:
17+
# Needed to upload the results to code-scanning dashboard.
18+
security-events: write
19+
actions: read
20+
contents: read
21+
id-token: write
22+
23+
steps:
24+
- name: "Checkout code"
25+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
26+
with:
27+
persist-credentials: false
28+
29+
- name: "Run analysis"
30+
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46
31+
with:
32+
results_file: results.sarif
33+
results_format: sarif
34+
# Read-only PAT token. To create it,
35+
# follow the steps in https://github.com/ossf/scorecard-action#pat-token-creation.
36+
repo_token: ${{ secrets.SCORECARD_READ_TOKEN }}
37+
# Publish the results to enable scorecard badges. For more details, see
38+
# https://github.com/ossf/scorecard-action#publishing-results.
39+
# For private repositories, `publish_results` will automatically be set to `false`,
40+
# regardless of the value entered here.
41+
publish_results: true
42+
43+
# Upload the results as artifacts (optional).
44+
- name: "Upload artifact"
45+
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029
46+
with:
47+
name: SARIF file
48+
path: results.sarif
49+
retention-days: 5
50+
51+
# Upload the results to GitHub's code scanning dashboard.
52+
- name: "Upload to code-scanning"
53+
uses: github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a
54+
with:
55+
sarif_file: results.sarif

dash_site

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
REQUIRED_DART_VERSION="3.4"
3+
REQUIRED_DART_VERSION="3.5"
44
REQUIRED_NODE_VERSION="20.12"
55
REQUIRED_PNPM_VERSION="9.0"
66

examples/_animation/basic_hero_animation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: >-
44
Shows how to create a simple or Hero animation using the Hero class directly.
55
66
environment:
7-
sdk: ^3.4.0
7+
sdk: ^3.5.0
88

99
dependencies:
1010
flutter:

examples/_animation/basic_radial_hero_animation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >-
55
as it animates to the new route.
66
77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:

examples/_animation/basic_staggered_animation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ publish_to: none
33
description: An introductory example to staggered animations.
44

55
environment:
6-
sdk: ^3.4.0
6+
sdk: ^3.5.0
77

88
dependencies:
99
flutter:

examples/_animation/hero_animation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ publish_to: none
33
description: Shows how to create a simple Hero transition.
44

55
environment:
6-
sdk: ^3.4.0
6+
sdk: ^3.5.0
77

88
dependencies:
99
flutter:

examples/_animation/radial_hero_animation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >-
55
as it animates to the new route.
66
77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:

examples/_animation/radial_hero_animation_animate_rectclip/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >-
55
as it animates to the new route.
66
77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:

examples/_animation/staggered_pic_selection/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ publish_to: none
33
description: A more complex staggered animation example.
44

55
environment:
6-
sdk: ^3.4.0
6+
sdk: ^3.5.0
77

88
dependencies:
99
flutter:

examples/animation/animate0/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: >-
55
version: 1.0.0
66

77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
cupertino_icons: ^1.0.6
13+
cupertino_icons: ^1.0.8
1414

1515
dev_dependencies:
1616
example_utils:

examples/animation/animate1/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: >-
55
version: 1.0.0
66

77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
cupertino_icons: ^1.0.6
13+
cupertino_icons: ^1.0.8
1414

1515
dev_dependencies:
1616
example_utils:

examples/animation/animate2/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: >-
55
version: 1.0.0
66

77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
cupertino_icons: ^1.0.6
13+
cupertino_icons: ^1.0.8
1414

1515
dev_dependencies:
1616
example_utils:

examples/animation/animate3/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: >-
55
version: 1.0.0
66

77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
cupertino_icons: ^1.0.6
13+
cupertino_icons: ^1.0.8
1414

1515
dev_dependencies:
1616
example_utils:

examples/animation/animate4/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: >-
55
version: 1.0.0
66

77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
cupertino_icons: ^1.0.6
13+
cupertino_icons: ^1.0.8
1414

1515
dev_dependencies:
1616
example_utils:

examples/animation/animate5/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: >-
55
version: 1.0.0
66

77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
cupertino_icons: ^1.0.6
13+
cupertino_icons: ^1.0.8
1414

1515
dev_dependencies:
1616
example_utils:

examples/animation/implicit/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ publish_to: none
55
version: 1.0.0+1
66

77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:

examples/basics/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Some code to demonstrate null safety.
33
version: 1.0.0
44

55
environment:
6-
sdk: ^3.4.0
6+
sdk: ^3.5.0
77

88
dependencies:
99
flutter:

examples/cookbook/animation/animated_container/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: animated_container
22
description: Sample code for cookbook.
33

44
environment:
5-
sdk: ^3.4.0
5+
sdk: ^3.5.0
66

77
dependencies:
88
flutter:

examples/cookbook/animation/opacity_animation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: opacity_animation
22
description: Sample code for cookbook.
33

44
environment:
5-
sdk: ^3.4.0
5+
sdk: ^3.5.0
66

77
dependencies:
88
flutter:

examples/cookbook/animation/page_route_animation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: page_route_animation
22
description: Sample code for cookbook.
33

44
environment:
5-
sdk: ^3.4.0
5+
sdk: ^3.5.0
66

77
dependencies:
88
flutter:

examples/cookbook/animation/physics_simulation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: physics_simulation
22
description: Sample code for cookbook.
33

44
environment:
5-
sdk: ^3.4.0
5+
sdk: ^3.5.0
66

77
dependencies:
88
flutter:

examples/cookbook/design/drawer/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: drawer
22
description: Sample code for drawer cookbook recipe.
33

44
environment:
5-
sdk: ^3.4.0
5+
sdk: ^3.5.0
66

77
dependencies:
88
flutter:

examples/cookbook/design/fonts/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ publish_to: none
44
version: 1.0.0+1
55

66
environment:
7-
sdk: ^3.4.0
7+
sdk: ^3.5.0
88

99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
cupertino_icons: ^1.0.6
12+
cupertino_icons: ^1.0.8
1313

1414
dev_dependencies:
1515
example_utils:

examples/cookbook/design/orientation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: orientation
22
description: Sample code for orientation cookbook recipe.
33

44
environment:
5-
sdk: ^3.4.0
5+
sdk: ^3.5.0
66

77
dependencies:
88
flutter:

examples/cookbook/design/package_fonts/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ publish_to: none
44
version: 1.0.0+1
55

66
environment:
7-
sdk: ^3.4.0
7+
sdk: ^3.5.0
88

99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
cupertino_icons: ^1.0.6
12+
cupertino_icons: ^1.0.8
1313

1414
dev_dependencies:
1515
example_utils:

examples/cookbook/design/snackbars/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: snackbars
22
description: Sample code for snackbars cookbook recipe.
33

44
environment:
5-
sdk: ^3.4.0
5+
sdk: ^3.5.0
66

77
dependencies:
88
flutter:

examples/cookbook/design/tabs/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: tabs
22
description: Sample code for tabs cookbook recipe.
33

44
environment:
5-
sdk: ^3.4.0
5+
sdk: ^3.5.0
66

77
dependencies:
88
flutter:

examples/cookbook/design/themes/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: themes
22
description: Sample code for themes cookbook recipe.
33

44
environment:
5-
sdk: ^3.4.0
5+
sdk: ^3.5.0
66

77
dependencies:
88
flutter:

examples/cookbook/effects/download_button/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ publish_to: none
44
version: 1.0.0+1
55

66
environment:
7-
sdk: ^3.4.0
7+
sdk: ^3.5.0
88

99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
cupertino_icons: ^1.0.6
12+
cupertino_icons: ^1.0.8
1313

1414
dev_dependencies:
1515
example_utils:

examples/cookbook/effects/drag_a_widget/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ publish_to: none
66
version: 1.0.0+1
77

88
environment:
9-
sdk: ^3.4.0
9+
sdk: ^3.5.0
1010

1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
cupertino_icons: ^1.0.6
14+
cupertino_icons: ^1.0.8
1515

1616
dev_dependencies:
1717
example_utils:

examples/cookbook/effects/expandable_fab/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ publish_to: none
55
version: 1.0.0+1
66

77
environment:
8-
sdk: ^3.4.0
8+
sdk: ^3.5.0
99

1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
cupertino_icons: ^1.0.6
13+
cupertino_icons: ^1.0.8
1414

1515
dev_dependencies:
1616
example_utils:

0 commit comments

Comments
 (0)