Skip to content

Commit

Permalink
Merge branch 'release/5.225.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 28, 2025
2 parents cffbbb0 + a8a96bd commit cee1b9c
Show file tree
Hide file tree
Showing 377 changed files with 10,783 additions and 4,911 deletions.
1 change: 1 addition & 0 deletions .github/.java-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
17
4 changes: 2 additions & 2 deletions .github/workflows/ads-end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Create folder
Expand Down
27 changes: 19 additions & 8 deletions .github/workflows/build-ad-hoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ on:
ref:
description: 'Ref to build APK from (branch, tag, commit)'
required: true
default: 'develop'
build-variant:
description: 'Android build variant'
required: true
default: 'playRelease'
type: choice
options:
- fdroidRelease
- internalDebug
- internalRelease
- playDebug
- playRelease

env:
ASANA_PAT: ${{ secrets.GH_ASANA_SECRET }}
Expand All @@ -23,12 +35,11 @@ jobs:
with:
submodules: recursive
token: ${{ secrets.GT_DAXMOBILE }}
ref: ${{ github.event.inputs.ref }}

- name: Set up JDK 17
ref: ${{ github.event.inputs.app-version }}
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Create folder
Expand All @@ -52,15 +63,15 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3

- name: Assemble release APK
run: ./gradlew assemblePlayRelease -Pforce-default-variant
- name: Assemble APK
run: ./gradlew assemble${{github.event.inputs.build-variant}} -Pforce-default-variant

- name: Move APK to new folder
run: find . -name "*.apk" -exec mv '{}' apk/release.apk \;
run: find . -name "*.apk" -exec mv '{}' apk/release${{github.event.inputs.build-variant}}.apk \;

- name: Upload debug apk
if: always()
uses: actions/upload-artifact@v4
with:
name: release
path: apk/release.apk
path: apk/release${{github.event.inputs.build-variant}}.apk
4 changes: 2 additions & 2 deletions .github/workflows/build-debug-apk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Set up Go
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-fdroid-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Setup Gradle
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI Checks

on:
workflow_dispatch:
push:
branches:
- main
Expand Down Expand Up @@ -28,10 +29,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Setup Gradle
Expand All @@ -50,10 +51,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Setup Gradle
Expand Down Expand Up @@ -83,10 +84,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Set up Go
Expand Down Expand Up @@ -126,10 +127,10 @@ jobs:
with:
force: true

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Set up Go
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/custom-tabs-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Create folder
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Setup Gradle
Expand All @@ -52,9 +52,9 @@ jobs:
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: 'docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
4 changes: 2 additions & 2 deletions .github/workflows/e2e-nightly-autofill.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Create folder
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/end-to-end-robintest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Create folder
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/external-css-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
working-directory: node_modules/@duckduckgo/content-scope-scripts
run: npm run build

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Decode secret
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/external-ref-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- name: Copy files
run: copy-files-from-to

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Setup Gradle
Expand Down Expand Up @@ -80,10 +80,10 @@ jobs:
- name: Copy files
run: copy-files-from-to

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Decode secret
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Setup Gradle
Expand All @@ -42,10 +42,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Setup Gradle
Expand Down Expand Up @@ -75,10 +75,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Set up Go
Expand Down Expand Up @@ -118,10 +118,10 @@ jobs:
with:
force: true

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Set up Go
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/privacy-dashboard-end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
with:
submodules: recursive

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Create folder
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/privacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
with:
force: true

- name: Set up JDK 17
- name: Set up JDK version
uses: actions/setup-java@v4
with:
java-version: '17'
java-version-file: .github/.java-version
distribution: 'adopt'

- name: Set up Go
Expand Down
Loading

0 comments on commit cee1b9c

Please sign in to comment.