Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3.0.0 to 3.0.2 #1137

Merged
merged 2 commits into from Apr 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
30 changes: 15 additions & 15 deletions .github/workflows/dart.yml
@@ -1,4 +1,4 @@
# Created with package:mono_repo v6.2.0
# Created with package:mono_repo v6.2.2
name: Dart CI
on:
push:
Expand Down Expand Up @@ -31,9 +31,9 @@ jobs:
with:
sdk: stable
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- name: mono_repo self validate
run: dart pub global activate mono_repo 6.2.0
run: dart pub global activate mono_repo 6.2.2
- name: mono_repo self validate
run: dart pub global run mono_repo generate --validate
job_002:
Expand All @@ -54,7 +54,7 @@ jobs:
with:
sdk: "2.14.0"
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: _test_yaml_pub_upgrade
name: _test_yaml; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
with:
sdk: dev
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: _test_yaml_pub_upgrade
name: _test_yaml; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
with:
sdk: "2.14.0"
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: _test_yaml_pub_upgrade
name: _test_yaml; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
with:
sdk: "2.14.0"
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: json_serializable_pub_upgrade
name: json_serializable; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
with:
sdk: "2.14.0"
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: json_serializable_pub_upgrade
name: json_serializable; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
with:
sdk: "2.14.0"
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: json_serializable_pub_upgrade
name: json_serializable; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -377,7 +377,7 @@ jobs:
with:
sdk: dev
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: _test_yaml_pub_upgrade
name: _test_yaml; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -436,7 +436,7 @@ jobs:
with:
sdk: dev
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: json_serializable_pub_upgrade
name: json_serializable; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -468,7 +468,7 @@ jobs:
with:
sdk: dev
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: json_serializable_pub_upgrade
name: json_serializable; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -500,7 +500,7 @@ jobs:
with:
sdk: dev
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: json_serializable_pub_upgrade
name: json_serializable; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -532,7 +532,7 @@ jobs:
with:
sdk: "2.14.0"
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: _test_yaml_pub_upgrade
name: _test_yaml; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down Expand Up @@ -590,7 +590,7 @@ jobs:
with:
sdk: dev
- id: checkout
uses: actions/checkout@v3.0.0
uses: actions/checkout@v3
- id: _test_yaml_pub_upgrade
name: _test_yaml; dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/markdown_linter.yml
Expand Up @@ -11,15 +11,15 @@ jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.0.2
- uses: gaurav-nelson/github-action-markdown-link-check@v1
markdown_lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.0.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion tool/ci.sh
@@ -1,5 +1,5 @@
#!/bin/bash
# Created with package:mono_repo v6.2.0
# Created with package:mono_repo v6.2.2

# Support built in commands on windows out of the box.
# When it is a flutter repo (check the pubspec.yaml for "sdk: flutter")
Expand Down