From d801aef6fbf7d64912afc3d1e930b0579d21745a Mon Sep 17 00:00:00 2001 From: nilsreichardt Date: Wed, 8 Mar 2023 12:17:09 +0100 Subject: [PATCH] Update `actions/checkout` from v2 to v3 in our GitHub workflows --- .github/workflows/dart.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dart.yaml b/.github/workflows/dart.yaml index 933c502..6e2f9cc 100644 --- a/.github/workflows/dart.yaml +++ b/.github/workflows/dart.yaml @@ -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 @@ -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 @@ -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 }} @@ -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 }}