Skip to content

Commit

Permalink
Merge pull request #106 from boschglobal/task-84
Browse files Browse the repository at this point in the history
Add a fixed Databroker version for PR builds
  • Loading branch information
wba2hi authored Mar 20, 2024
2 parents ee3e6c2 + 95d7618 commit 6f21d80
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/actions/run-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:

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

- name: Upload Code Coverage Report
if: ${{ inputs.upload-code-coverage-reports == 'true' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: code-coverage
path: ${{ github.workspace }}/build/reports/jacoco/jacocoRootReport/html/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
gradle_task: app:assembleRelease

- name: Archive .apk file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: kuksa_sdk_testapp.apk
path: app/build/outputs/apk/release/app-release.apk
Expand All @@ -45,7 +45,7 @@ jobs:
upload-code-coverage-reports: true

- name: Archive changelog
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: CHANGELOG.md
path: CHANGELOG.md
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Upload Detekt Reports
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: detekt-reports
path: ${{ github.workspace }}/build/reports/detekt
Expand All @@ -33,3 +33,4 @@ jobs:
with:
upload-test-reports: true
upload-code-coverage-reports: true
databroker-version: "latest"

0 comments on commit 6f21d80

Please sign in to comment.