From 2fcd5629bc8a1d829184c1b64276490257abdb0f Mon Sep 17 00:00:00 2001 From: Goooler Date: Tue, 19 Apr 2022 18:54:50 +0800 Subject: [PATCH] Bump actions/checkout to v3 (#145) --- .github/workflows/workflow.yml | 10 +++++----- README.md | 22 +++++++++++----------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 1bb4875..0effeec 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -15,7 +15,7 @@ jobs: channel: [stable, beta] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - uses: ./ with: channel: ${{ matrix.channel }} @@ -38,7 +38,7 @@ jobs: version: [ 2.5.3, 2.x, 1, v1.12 ] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - uses: ./ with: channel: stable @@ -53,7 +53,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - uses: ./ with: channel: master @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - uses: ./ with: channel: any @@ -85,7 +85,7 @@ jobs: operating-system: [ubuntu-latest, windows-latest, macos-latest] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - uses: ./ with: channel: stable diff --git a/README.md b/README.md index 2858299..fb200bf 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Use specific version and channel: ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: flutter-version: '2.8.0' @@ -20,7 +20,7 @@ Use latest release for particular channel: ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: channel: 'stable' # or: 'beta' or 'master' @@ -31,7 +31,7 @@ Use latest release for particular version and/or channel: ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: flutter-version: '1.22.x' # or, you can use 1.22 @@ -43,7 +43,7 @@ Use particular version on any channel: ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: flutter-version: '2.x' @@ -55,7 +55,7 @@ Build Android APK and app bundle: ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: actions/setup-java@v2 with: distribution: 'zulu' @@ -76,7 +76,7 @@ jobs: build: runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: flutter-version: '2.10.4' @@ -90,7 +90,7 @@ Build for the web: ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: flutter-version: '2.10.4' @@ -106,7 +106,7 @@ jobs: build: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: channel: 'beta' @@ -121,7 +121,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: channel: 'beta' @@ -139,7 +139,7 @@ jobs: build: runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: channel: 'beta' @@ -152,7 +152,7 @@ Integration with `actions/cache`: ```yaml steps: -- uses: actions/checkout@v2 +- uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: flutter-version: '2.10.x'