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 from v2 to v3 in our GitHub workflows #10

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/dart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container:
image: google/dart:2.12-dev
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Check for no lint Errors and no TODO comments
run: ./scripts/check_for_lint_errors_and_TODO_comments.sh

Expand All @@ -21,7 +21,7 @@ jobs:
container:
image: google/dart:2.12-dev
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Check that code is formatted
run: ./scripts/check_code_is_formatted.sh

Expand All @@ -30,7 +30,7 @@ jobs:
container:
image: google/dart:2.12-dev
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run all tests that contact the remote Firestore database.
env:
FIRESTORE_CREDENTIALS: ${{ secrets.FIRESTORE_CREDENTIALS }}
Expand All @@ -45,7 +45,7 @@ jobs:
# container:
# image: google/dart:2.12-dev
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v3
# - name: Run tests
# env:
# FIRESTORE_CREDENTIALS: ${{ secrets.FIRESTORE_CREDENTIALS }}
Expand Down