Skip to content

Commit 1ace81e

Browse files
authored
Update FTL action to remove GHA warning about v0. (#1501)
* Update FTL action to remove GHA warning about v0. * Up Python version to 3.8 required for FTL.
1 parent dea6472 commit 1ace81e

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup python
2626
uses: actions/setup-python@v4
2727
with:
28-
python-version: 3.7
28+
python-version: 3.8
2929
- name: Install prerequisites
3030
run: python scripts/gha/install_prereqs_desktop.py
3131
- name: log clang format version
@@ -57,7 +57,7 @@ jobs:
5757
- name: Setup python
5858
uses: actions/setup-python@v4
5959
with:
60-
python-version: 3.7
60+
python-version: 3.8
6161
- name: Install prerequisites
6262
run: |
6363
python scripts/gha/install_prereqs_desktop.py

.github/workflows/checks_secure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
if: steps.check.outputs.has-permission != 1 || github.event.pull_request.head.repo.full_name != github.repository
3232
uses: actions/setup-python@v4
3333
with:
34-
python-version: 3.7
34+
python-version: 3.8
3535
- name: Install prerequisites
3636
if: steps.check.outputs.has-permission != 1 || github.event.pull_request.head.repo.full_name != github.repository
3737
run: pip install -r scripts/gha/python_requirements.txt

.github/workflows/cpp-packaging.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
- name: Setup python
9898
uses: actions/setup-python@v4
9999
with:
100-
python-version: 3.7
100+
python-version: 3.8
101101

102102
- name: Fetch and build binutils
103103
run: |
@@ -207,7 +207,7 @@ jobs:
207207
- name: Setup python
208208
uses: actions/setup-python@v4
209209
with:
210-
python-version: 3.7
210+
python-version: 3.8
211211

212212
- name: install prerequisites
213213
run: sdk-src/build_scripts/ios/install_prereqs.sh
@@ -310,7 +310,7 @@ jobs:
310310
architecture: ["x64", "x86", "arm64"]
311311
msvc_runtime: ["static", "dynamic"]
312312
linux_abi: ["legacy", "c++11"]
313-
python_version: [3.7]
313+
python_version: [3.8]
314314
include:
315315
- os: windows-latest
316316
vcpkg_triplet_suffix: "windows-static"
@@ -518,7 +518,7 @@ jobs:
518518
- name: Setup python
519519
uses: actions/setup-python@v4
520520
with:
521-
python-version: 3.7
521+
python-version: 3.8
522522

523523
- name: Install prerequisites
524524
run: |
@@ -837,7 +837,7 @@ jobs:
837837
- name: Setup python
838838
uses: actions/setup-python@v4
839839
with:
840-
python-version: '3.7'
840+
python-version: '3.8'
841841
- name: Use expanded matrix
842842
if: github.event_name == 'schedule' || github.event.inputs.use_expanded_matrix == '1'
843843
run: |

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ jobs:
10421042
--ci
10431043
- id: ftl_test
10441044
if: steps.device-info.outputs.device_type == 'ftl'
1045-
uses: FirebaseExtended/github-actions/firebase-test-lab@v1.3
1045+
uses: FirebaseExtended/github-actions/firebase-test-lab@v1.4
10461046
timeout-minutes: 90
10471047
with:
10481048
credentials_json: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CREDENTIALS }}
@@ -1193,7 +1193,7 @@ jobs:
11931193
--ci
11941194
- id: ftl_test
11951195
if: steps.device-info.outputs.device_type == 'ftl'
1196-
uses: FirebaseExtended/github-actions/firebase-test-lab@v1.3
1196+
uses: FirebaseExtended/github-actions/firebase-test-lab@v1.4
11971197
timeout-minutes: 90
11981198
with:
11991199
credentials_json: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CREDENTIALS }}

.github/workflows/ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Setup python
6363
uses: actions/setup-python@v4
6464
with:
65-
python-version: 3.7
65+
python-version: 3.8
6666
architecture: "x64"
6767

6868
- name: Install prerequisites

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup python
2626
uses: actions/setup-python@v4
2727
with:
28-
python-version: 3.7
28+
python-version: 3.8
2929
- name: Install prerequisites
3030
run: |
3131
cd firebase

.github/workflows/retry-test-failures.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup python
2424
uses: actions/setup-python@v4
2525
with:
26-
python-version: 3.7
26+
python-version: 3.8
2727

2828
- uses: actions/checkout@v3
2929
with:

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Setup python
3838
uses: actions/setup-python@v4
3939
with:
40-
python-version: 3.7
40+
python-version: 3.8
4141

4242
- name: Check out base branch
4343
uses: actions/checkout@v3

.github/workflows/update-feature-branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: Setup python
7575
uses: actions/setup-python@v4
7676
with:
77-
python-version: 3.7
77+
python-version: 3.8
7878

7979
- uses: actions/checkout@v3
8080
with:

0 commit comments

Comments
 (0)