Skip to content

Commit

Permalink
Bump actions/checkout to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Apr 10, 2022
1 parent f0cc031 commit 12b5f54
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/workflow.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
channel: [stable, beta]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: ./
with:
channel: ${{ matrix.channel }}
Expand All @@ -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
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: ./
with:
channel: master
Expand All @@ -67,7 +67,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: ./
with:
channel: any
Expand All @@ -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
Expand Down
22 changes: 11 additions & 11 deletions README.md
Expand Up @@ -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'
Expand All @@ -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'
Expand All @@ -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
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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.5.3'
Expand All @@ -89,7 +89,7 @@ Build for the web:

```yaml
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '2.5.3'
Expand All @@ -105,7 +105,7 @@ jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'beta'
Expand All @@ -120,7 +120,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'beta'
Expand All @@ -138,7 +138,7 @@ jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'beta'
Expand All @@ -150,7 +150,7 @@ Integration with `actions/cache`:

```yaml
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '2.5.0'
Expand Down

0 comments on commit 12b5f54

Please sign in to comment.