Skip to content

Commit 488c236

Browse files
committed
Merge branch 'release/0.4.3'
2 parents d78ae80 + 9aee2f2 commit 488c236

File tree

1,654 files changed

+7417
-4743
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,654 files changed

+7417
-4743
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
distribution: 'temurin' # See 'Supported distributions' for available options
3939
java-version: '17'
4040
- name: Configure gradle
41-
uses: gradle/[email protected]
41+
uses: gradle/actions/setup-gradle@v3
4242
with:
4343
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
4444
- name: Assemble debug APK

.github/workflows/fork-pr-notice.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
welcome:
1212
runs-on: ubuntu-latest
1313
name: Welcome comment
14-
if: github.event.pull_request.fork != null
14+
# Only display it if base repo (upstream) is different from HEAD repo (possibly a fork)
15+
if: github.event.pull_request.base.repo.full_name != github.event.pull_request.head.repo.full_name
1516
steps:
1617
- name: Add auto-generated commit warning
1718
uses: actions/github-script@v7

.github/workflows/nightlyReports.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
distribution: 'temurin' # See 'Supported distributions' for available options
6363
java-version: '17'
6464
- name: Configure gradle
65-
uses: gradle/[email protected]
65+
uses: gradle/actions/setup-gradle@v3
6666
with:
6767
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
6868
- name: Dependency analysis

.github/workflows/quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
distribution: 'temurin' # See 'Supported distributions' for available options
4141
java-version: '17'
4242
- name: Configure gradle
43-
uses: gradle/[email protected]
43+
uses: gradle/actions/setup-gradle@v3
4444
with:
4545
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
4646
- name: Run code quality check suite

.github/workflows/recordScreenshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
java-version: '17'
4040
# Add gradle cache, this should speed up the process
4141
- name: Configure gradle
42-
uses: gradle/[email protected]
42+
uses: gradle/actions/setup-gradle@v3
4343
with:
4444
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
4545
- name: Record screenshots

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
distribution: 'temurin' # See 'Supported distributions' for available options
2626
java-version: '17'
2727
- name: Configure gradle
28-
uses: gradle/[email protected]
28+
uses: gradle/actions/setup-gradle@v3
2929
- name: Create app bundle
3030
env:
3131
ELEMENT_ANDROID_MAPTILER_API_KEY: ${{ secrets.MAPTILER_KEY }}

.github/workflows/sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
distribution: 'temurin' # See 'Supported distributions' for available options
3333
java-version: '17'
3434
- name: Configure gradle
35-
uses: gradle/[email protected]
35+
uses: gradle/actions/setup-gradle@v3
3636
with:
3737
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
3838
- name: 🔊 Publish results to Sonar

.github/workflows/sync-localazy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Run Localazy script
2525
run: ./tools/localazy/downloadStrings.sh --all
2626
- name: Create Pull Request for Strings
27-
uses: peter-evans/create-pull-request@v5
27+
uses: peter-evans/create-pull-request@v6
2828
with:
2929
token: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
3030
commit-message: Sync Strings from Localazy

.github/workflows/sync-sas-strings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Run SAS String script
2424
run: ./tools/sas/import_sas_strings.py
2525
- name: Create Pull Request for SAS Strings
26-
uses: peter-evans/create-pull-request@v5
26+
uses: peter-evans/create-pull-request@v6
2727
with:
2828
commit-message: Sync SAS Strings
2929
title: Sync SAS Strings

.github/workflows/tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
distribution: 'temurin' # See 'Supported distributions' for available options
4545
java-version: '17'
4646
- name: Configure gradle
47-
uses: gradle/[email protected]
47+
uses: gradle/actions/setup-gradle@v3
4848
with:
4949
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
5050

@@ -81,6 +81,9 @@ jobs:
8181
# https://github.com/codecov/codecov-action
8282
- name: ☂️ Upload coverage reports to codecov
8383
if: always()
84-
uses: codecov/codecov-action@v3
85-
# with:
86-
# files: build/reports/kover/xml/report.xml
84+
uses: codecov/codecov-action@v4
85+
with:
86+
fail_ci_if_error: true
87+
token: ${{ secrets.CODECOV_TOKEN }}
88+
# with:
89+
# files: build/reports/kover/xml/report.xml

0 commit comments

Comments
 (0)