File tree Expand file tree Collapse file tree 7 files changed +95
-39
lines changed Expand file tree Collapse file tree 7 files changed +95
-39
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ jobs:
28
28
matrix :
29
29
package : ['cronet_http', 'cronet_http_embedded']
30
30
steps :
31
- - uses : actions/checkout@v4
32
- - uses : actions/setup-java@v4
31
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
32
+ - uses : actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93
33
33
with :
34
34
distribution : ' zulu'
35
35
java-version : ' 17'
36
- - uses : subosito/flutter-action@v2
36
+ - uses : subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
37
37
with :
38
38
channel : ' stable'
39
39
- name : Make cronet_http_embedded copy
55
55
run : flutter analyze --fatal-infos
56
56
if : always() && steps.install.outcome == 'success'
57
57
- name : Run tests
58
- uses : reactivecircus/android-emulator-runner@v2
58
+ uses : reactivecircus/android-emulator-runner@6b0df4b0efb23bb0ec63d881db79aefbc976e4b2
59
59
if : always() && steps.install.outcome == 'success'
60
60
with :
61
61
# api-level/minSdkVersion should be help in sync in:
Original file line number Diff line number Diff line change 28
28
run :
29
29
working-directory : pkgs/cupertino_http
30
30
steps :
31
- - uses : actions/checkout@v4
32
- - uses : subosito/flutter-action@v2
31
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
32
+ - uses : subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
33
33
with :
34
34
channel : ' stable'
35
35
- id : install
@@ -63,11 +63,11 @@ jobs:
63
63
run :
64
64
working-directory : pkgs/cupertino_http/example
65
65
steps :
66
- - uses : actions/checkout@v4
67
- - uses : futureware-tech/simulator-action@v3
66
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
67
+ - uses : futureware-tech/simulator-action@bfa03d93ec9de6dacb0c5553bbf8da8afc6c2ee9
68
68
with :
69
69
model : ' iPhone 8'
70
- - uses : subosito/flutter-action@v2
70
+ - uses : subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
71
71
with :
72
72
flutter-version : ${{ matrix.flutter-version }}
73
73
channel : ' stable'
Original file line number Diff line number Diff line change 29
29
run :
30
30
working-directory : pkgs/java_http
31
31
steps :
32
- - uses : actions/checkout@v4
33
- - uses : subosito/flutter-action@v2
32
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
33
+ - uses : subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
34
34
with :
35
35
channel : ' stable'
36
36
55
55
working-directory : pkgs/java_http
56
56
57
57
steps :
58
- - uses : actions/checkout@v4
59
- - uses : subosito/flutter-action@v2
58
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
59
+ - uses : subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
60
60
with :
61
61
channel : ' stable'
62
62
Original file line number Diff line number Diff line change
1
+ # A workflow to close issues where the author hasn't responded to a request for
2
+ # more information; see https://github.com/actions/stale.
3
+
4
+ name : No Response
5
+
6
+ # Run as a daily cron.
7
+ on :
8
+ schedule :
9
+ # Every day at 8am
10
+ - cron : ' 0 8 * * *'
11
+
12
+ # All permissions not specified are set to 'none'.
13
+ permissions :
14
+ issues : write
15
+ pull-requests : write
16
+
17
+ jobs :
18
+ no-response :
19
+ runs-on : ubuntu-latest
20
+ if : ${{ github.repository_owner == 'dart-lang' }}
21
+ steps :
22
+ - uses : actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e
23
+ with :
24
+ # Don't automatically mark inactive issues+PRs as stale.
25
+ days-before-stale : -1
26
+ # Close needs-info issues and PRs after 14 days of inactivity.
27
+ days-before-close : 14
28
+ stale-issue-label : " needs-info"
29
+ close-issue-message : >
30
+ Without additional information we're not able to resolve this issue.
31
+ Feel free to add more info or respond to any questions above and we
32
+ can reopen the case. Thanks for your contribution!
33
+ stale-pr-label : " needs-info"
34
+ close-pr-message : >
35
+ Without additional information we're not able to resolve this PR.
36
+ Feel free to add more info or respond to any questions above.
37
+ Thanks for your contribution!
Original file line number Diff line number Diff line change
1
+ # A CI configuration to auto-publish pub packages.
2
+
3
+ name : Publish
4
+
5
+ on :
6
+ pull_request :
7
+ branches : [ master ]
8
+ push :
9
+ tags : [ '[A-z]+-v[0-9]+.[0-9]+.[0-9]+' ]
10
+
11
+ jobs :
12
+ publish :
13
+ if : ${{ github.repository_owner == 'dart-lang' }}
14
+ uses : dart-lang/ecosystem/.github/workflows/publish.yaml@main
15
+ permissions :
16
+ id-token : write # Required for authentication using OIDC
17
+ pull-requests : write # Required for writing the pull request note
Original file line number Diff line number Diff line change
1
+ ## 1.3.1-wip
2
+
1
3
## 1.3.0
2
4
3
5
* Use ` package:http_image_provider ` in the example application.
You can’t perform that action at this time.
0 commit comments