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

Update actions/checkout requirement to 61b9e3751b92087fd0b06925ba6dd6314e06f089 #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

# Checkout gallery code and get packages.
- name: Checkout gallery code
uses: actions/checkout@d171c3b028d844f2bf14e9fdec0c58114451e4bf
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
- run: flutter pub get -v

- run: flutter build ${{ matrix.target }}
2 changes: 1 addition & 1 deletion .github/workflows/release_deploy_play_store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

# Checkout gallery code and get packages.
- name: Checkout gallery code
uses: actions/checkout@d171c3b028d844f2bf14e9fdec0c58114451e4bf
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
- run: flutter pub get

# Setup Ruby, Bundler, and Gemfile dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_deploy_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

# Checkout gallery code and get packages.
- name: Checkout gallery code
uses: actions/checkout@d171c3b028d844f2bf14e9fdec0c58114451e4bf
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
- run: flutter pub get

# Build and deploy (by default, to staging).
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_draft_github_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- run: flutter doctor -v
# Checkout gallery code, recreate missing files, and get packages.
- name: Checkout gallery code
uses: actions/checkout@d171c3b028d844f2bf14e9fdec0c58114451e4bf
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
- run: flutter create .
- run: flutter pub get

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecards-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # v3.0.0
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # v3.0.0
with:
persist-credentials: false

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

# Checkout gallery code and get packages.
- name: Checkout gallery code
uses: actions/checkout@d171c3b028d844f2bf14e9fdec0c58114451e4bf
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
- run: flutter pub get -v

# Analyze, check formatting, and run unit tests.
Expand All @@ -49,7 +49,7 @@ jobs:

# Checkout gallery code and get packages.
- name: Checkout gallery code
uses: actions/checkout@d171c3b028d844f2bf14e9fdec0c58114451e4bf
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
- run: flutter pub get -v

- run: flutter test test_benchmarks
Expand All @@ -67,7 +67,7 @@ jobs:

# Checkout gallery code and get packages.
- name: Checkout gallery code
uses: actions/checkout@d171c3b028d844f2bf14e9fdec0c58114451e4bf
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
- run: flutter pub get -v

# Run the golden tests and upload failed test artifacts.
Expand Down