Skip to content

Commit c2fe853

Browse files
authored
Update to 3.13.2
1 parent 0acb650 commit c2fe853

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.github/workflows/pull-request.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout Repo
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
- name: Login to Docker Hub
15-
uses: docker/login-action@v2
15+
uses: docker/login-action@v3
1616
with:
1717
username: ${{ secrets.DOCKERHUB_USERNAME }}
1818
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ env:
66
on:
77
push:
88
tags:
9-
- '*'
9+
- "*"
1010

1111
jobs:
1212
release:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout Repo
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
- name: Login to Docker Hub
18-
uses: docker/login-action@v2
18+
uses: docker/login-action@v3
1919
with:
2020
username: ${{ secrets.DOCKERHUB_USERNAME }}
2121
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/staging.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout Repo
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
- name: Login to Docker Hub
15-
uses: docker/login-action@v2
15+
uses: docker/login-action@v3
1616
with:
1717
username: ${{ secrets.DOCKERHUB_USERNAME }}
1818
password: ${{ secrets.DOCKERHUB_TOKEN }}

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM mobiledevops/android-sdk-image:33.0.2
22

3-
ENV FLUTTER_VERSION="3.13.1"
3+
ENV FLUTTER_VERSION="3.13.2"
44
ENV FLUTTER_HOME "/home/mobiledevops/.flutter-sdk"
55
ENV PATH $PATH:$FLUTTER_HOME/bin
66

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ Currently:
66

77
| Version | Ref | Release Date |
88
| ------- | ------- | ------------ |
9-
| 3.13.1 | e1e4722 | 23.08.2023 |
9+
| 3.13.2 | ff5b5b5 | 30.08.2023 |
1010

1111
## Releases
1212

1313
| Tag | Flutter Version | Flutter Channel |
1414
| ----------------- | ----------------- | --------------- |
15+
| 3.13.2 | 3.13.2 | stable |
1516
| 3.13.1 | 3.13.1 | stable |
1617
| 3.13.0 | 3.13.0 | stable |
1718
| 3.10.3 | 3.10.3 | stable |
@@ -70,7 +71,7 @@ version: 2.1
7071
jobs:
7172
build:
7273
docker:
73-
- image: slashwhyorganization/flutter-sdk-image:3.13.1
74+
- image: slashwhyorganization/flutter-sdk-image:3.13.2
7475
steps:
7576
- checkout
7677
- run:
@@ -97,7 +98,7 @@ services:
9798
- docker
9899
99100
env:
100-
- DOCKER_IMAGE=slashwhyorganization/flutter-sdk-image:3.13.1
101+
- DOCKER_IMAGE=slashwhyorganization/flutter-sdk-image:3.13.2
101102
102103
before_install:
103104
- docker pull $DOCKER_IMAGE
@@ -120,7 +121,7 @@ Example:
120121

121122
```
122123
# .gitlab-ci.yml
123-
image: slashwhyorganization/flutter-sdk-image:3.13.1
124+
image: slashwhyorganization/flutter-sdk-image:3.13.2
124125
125126
stages:
126127
- build

0 commit comments

Comments
 (0)