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

Bump actions/checkout to v3 #145

Merged
merged 1 commit into from Apr 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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