Skip to content

Commit 6f21d80

Browse files
authored
Merge pull request #106 from boschglobal/task-84
Add a fixed Databroker version for PR builds
2 parents ee3e6c2 + 95d7618 commit 6f21d80

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/actions/run-tests/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626

2727
- name: Upload Test Reports
2828
if: ${{ inputs.upload-test-reports == 'true' }}
29-
uses: actions/upload-artifact@v3
29+
uses: actions/upload-artifact@v4
3030
with:
3131
name: test-reports
3232
path: ${{ github.workspace }}/**/reports/tests/*/
@@ -40,7 +40,7 @@ runs:
4040

4141
- name: Upload Code Coverage Report
4242
if: ${{ inputs.upload-code-coverage-reports == 'true' }}
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: code-coverage
4646
path: ${{ github.workspace }}/build/reports/jacoco/jacocoRootReport/html/*

.github/workflows/build-main.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
gradle_task: app:assembleRelease
3232

3333
- name: Archive .apk file
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: kuksa_sdk_testapp.apk
3737
path: app/build/outputs/apk/release/app-release.apk
@@ -45,7 +45,7 @@ jobs:
4545
upload-code-coverage-reports: true
4646

4747
- name: Archive changelog
48-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
4949
with:
5050
name: CHANGELOG.md
5151
path: CHANGELOG.md

.github/workflows/build-pull-request.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: Upload Detekt Reports
2323
if: always()
24-
uses: actions/upload-artifact@v3
24+
uses: actions/upload-artifact@v4
2525
with:
2626
name: detekt-reports
2727
path: ${{ github.workspace }}/build/reports/detekt
@@ -33,3 +33,4 @@ jobs:
3333
with:
3434
upload-test-reports: true
3535
upload-code-coverage-reports: true
36+
databroker-version: "latest"

0 commit comments

Comments
 (0)