Skip to content

Commit d3167b5

Browse files
authored
update to the latest action versions (#439)
* update to the latest action versions * update action name * update version * regen
1 parent c1992ec commit d3167b5

17 files changed

+294
-290
lines changed

.github/workflows/dart.yml

Lines changed: 57 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mono_repo/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
## 6.5.1
1+
## 6.5.2
22

3+
- Updated `actions/cache`, `actions/checkout`, and `dart-lang/setup-dart` to
4+
the latest versions.
5+
6+
## 6.5.1
37
- Updated `actions/cache` to latest version.
48

59
## 6.5.0

mono_repo/lib/src/commands/github/action_info.dart

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ import 'job.dart';
22
import 'step.dart';
33

44
enum ActionInfo implements Comparable<ActionInfo> {
5-
checkout(
6-
name: 'Checkout repository',
7-
repo: 'actions/checkout',
8-
version: 'ac593985615ec2ede58e132d2e21d2b1cbd6127c', // v3.3.0
9-
),
105
cache(
116
name: 'Cache Pub hosted dependencies',
127
repo: 'actions/cache',
13-
version: '69d9d449aced6a2ede0bc19182fadc3a0a42d2b0', // v3.2.6
8+
version: '88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8', // v3.3.1
9+
),
10+
checkout(
11+
name: 'Checkout repository',
12+
repo: 'actions/checkout',
13+
version: '24cb9080177205b6e8c946b17badbe402adc938f', // v3.4.0
1414
),
1515
setupDart(
1616
name: 'Setup Dart SDK',
1717
repo: 'dart-lang/setup-dart',
18-
version: 'a57a6c04cf7d4840e88432aad6281d1e125f0d46', // v1.4
18+
version: 'd6a63dab3335f427404425de0fbfed4686d93c4f', // v1.5.0
1919
),
2020
setupFlutter(
2121
name: 'Setup Flutter SDK',

mono_repo/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mono_repo/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: mono_repo
22
description: >-
33
CLI tools to make it easier to manage a single source repository containing
44
multiple Dart packages.
5-
version: 6.5.1
5+
version: 6.5.2
66
repository: https://github.com/google/mono_repo.dart
77

88
environment:

mono_repo/test/script_integration_outputs/github_output_group_overrides.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: macos-latest
2020
steps:
2121
- name: Cache Pub hosted dependencies
22-
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0
22+
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
2323
with:
2424
path: "~/.pub-cache/hosted"
2525
key: "os:macos-latest;pub-cache-hosted;sdk:dev;packages:pkg_a;commands:analyze-format"
@@ -29,12 +29,12 @@ jobs:
2929
os:macos-latest;pub-cache-hosted
3030
os:macos-latest
3131
- name: Setup Dart SDK
32-
uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
32+
uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
3333
with:
3434
sdk: dev
3535
- id: checkout
3636
name: Checkout repository
37-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
37+
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
3838
- id: pkg_a_pub_upgrade
3939
name: pkg_a; dart pub upgrade
4040
run: dart pub upgrade
@@ -53,12 +53,12 @@ jobs:
5353
runs-on: windows-latest
5454
steps:
5555
- name: Setup Dart SDK
56-
uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
56+
uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
5757
with:
5858
sdk: "1.23.0"
5959
- id: checkout
6060
name: Checkout repository
61-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
61+
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
6262
- id: pkg_a_pub_upgrade
6363
name: pkg_a; dart pub upgrade
6464
run: dart pub upgrade
@@ -73,7 +73,7 @@ jobs:
7373
runs-on: ubuntu-latest
7474
steps:
7575
- name: Cache Pub hosted dependencies
76-
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0
76+
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
7777
with:
7878
path: "~/.pub-cache/hosted"
7979
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:pkg_a;commands:test_1"
@@ -83,12 +83,12 @@ jobs:
8383
os:ubuntu-latest;pub-cache-hosted
8484
os:ubuntu-latest
8585
- name: Setup Dart SDK
86-
uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
86+
uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
8787
with:
8888
sdk: stable
8989
- id: checkout
9090
name: Checkout repository
91-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
91+
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
9292
- id: pkg_a_pub_upgrade
9393
name: pkg_a; dart pub upgrade
9494
run: dart pub upgrade
@@ -106,7 +106,7 @@ jobs:
106106
runs-on: macos-latest
107107
steps:
108108
- name: Cache Pub hosted dependencies
109-
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0
109+
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
110110
with:
111111
path: "~/.pub-cache/hosted"
112112
key: "os:macos-latest;pub-cache-hosted;sdk:dev;packages:pkg_a;commands:test_0"
@@ -116,12 +116,12 @@ jobs:
116116
os:macos-latest;pub-cache-hosted
117117
os:macos-latest
118118
- name: Setup Dart SDK
119-
uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
119+
uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
120120
with:
121121
sdk: dev
122122
- id: checkout
123123
name: Checkout repository
124-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
124+
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
125125
- id: pkg_a_pub_upgrade
126126
name: pkg_a; dart pub upgrade
127127
run: dart pub upgrade

mono_repo/test/script_integration_outputs/github_output_test_with_coverage.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Cache Pub hosted dependencies
22-
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0
22+
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
2323
with:
2424
path: "~/.pub-cache/hosted"
2525
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:pkg_a;commands:test_with_coverage"
@@ -29,14 +29,14 @@ jobs:
2929
os:ubuntu-latest;pub-cache-hosted
3030
os:ubuntu-latest
3131
- name: Setup Dart SDK
32-
uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
32+
uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
3333
with:
3434
sdk: stable
3535
- name: "Activate package:coverage"
3636
run: "dart pub global activate coverage '>=1.5.0'"
3737
- id: checkout
3838
name: Checkout repository
39-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
39+
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
4040
- id: pkg_a_pub_upgrade
4141
name: pkg_a; dart pub upgrade
4242
run: dart pub upgrade
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: macos-latest
5959
steps:
6060
- name: Cache Pub hosted dependencies
61-
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0
61+
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
6262
with:
6363
path: "~/.pub-cache/hosted"
6464
key: "os:macos-latest;pub-cache-hosted;sdk:dev;packages:pkg_a;commands:test"
@@ -68,12 +68,12 @@ jobs:
6868
os:macos-latest;pub-cache-hosted
6969
os:macos-latest
7070
- name: Setup Dart SDK
71-
uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
71+
uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
7272
with:
7373
sdk: dev
7474
- id: checkout
7575
name: Checkout repository
76-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
76+
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
7777
- id: pkg_a_pub_upgrade
7878
name: pkg_a; dart pub upgrade
7979
run: dart pub upgrade

0 commit comments

Comments
 (0)