Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a fixed Databroker version for PR builds #106

Merged
merged 3 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"