We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acd408d commit a90f09eCopy full SHA for a90f09e
.github/workflows/build.yml
@@ -24,13 +24,16 @@ jobs:
24
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
25
- uses: actions/checkout@v2
26
# Java environment.
27
- - uses: actions/setup-java@v1
+ - uses: actions/setup-java@v3
28
with:
29
+ distribution: 'zulu'
30
java-version: '12.x'
31
# Setup the flutter environment.
- - uses: subosito/flutter-action@v1
32
+ - uses: subosito/flutter-action@v2
33
34
+ flutter-version: "3.3.2"
35
channel: 'stable'
36
+ cache: true
37
# Get flutter dependencies.
38
- run: flutter pub get
39
# Check for any formatting issues in the code.
0 commit comments