Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
Browse files Browse the repository at this point in the history
  • Loading branch information
erikeelde authored Jan 11, 2024
2 parents 1c264cf + 91ef196 commit 84a8b4e
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 13 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/app-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,17 @@ jobs:
echo "${{ secrets.SERVICE_ACCOUNT }}" > service_account.json.asc
gpg -d --passphrase "${{ secrets.GPG_ENCRYPTION_KEY }}" --batch service_account.json.asc > service_account.json
- name: "Calculate build number"
id: version_information
uses: ./.github/actions/version_information
- name: Check out java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17

- name: "Calculate build number"
id: version_information
uses: ./.github/actions/version_information

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: '0'

- name: Check out java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flow-noop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: '0'

- name: Check out java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flow-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: '0'

- name: Check out java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: '0'

- name: Check out java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
Expand All @@ -37,7 +37,7 @@ jobs:
run: ./gradlew :toggles-app:packageDebug :toggles-sample:packageDebug

- name: Upload apks
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Apks
path: '**/build/outputs/apk/*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prefs-noop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: '0'

- name: Check out java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prefs-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: '0'

- name: Check out java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: '0'

- name: Check out java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
run: ./gradlew :toggles-prefs-noop:check

- name: Upload reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: Reports
Expand Down

0 comments on commit 84a8b4e

Please sign in to comment.