Skip to content

fix(deps): update all non-major dependencies #120

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

Merged
merged 1 commit into from
Apr 1, 2025
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
java-version-file: '.java-version'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4.3.0
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
- name: Bump version
if: github.event_name == 'workflow_dispatch' && github.event.inputs.releaseVersion != ''
run: |
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
JUNIT5_ROBOLECTRIC_EXTENSION_GPG_SIGNING_KEY: '${{ secrets.JUNIT5_ROBOLECTRIC_EXTENSION_GPG_SIGNING_KEY }}'
JUNIT5_ROBOLECTRIC_EXTENSION_GPG_SIGNING_PASSWORD: '${{ secrets.JUNIT5_ROBOLECTRIC_EXTENSION_GPG_SIGNING_PASSWORD }}'
- name: Upload unit test report
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
if: ${{ always() && hashFiles('**/test-results/**/*.xml') != '' }}
with:
name: ${{ matrix.os }}-unit-test-report
Expand All @@ -77,7 +77,7 @@ jobs:
${{ github.workspace }}/**/build/test-results
retention-days: 5
- name: Upload coverage report
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
if: ${{ always() && hashFiles('build/reports/kover/report.xml') != '' }}
with:
name: ${{ matrix.os }}-kover-report
Expand Down Expand Up @@ -118,12 +118,12 @@ jobs:
if: github.repository == 'apter-tech/junit5-robolectric-extension' && github.event_name == 'pull_request'
steps:
- name: Download unit test report
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
with:
name: ${{ matrix.os }}-unit-test-report
- name: Comment unit test report
if: ${{ hashFiles('**/test-results/**/*.xml') != '' }}
uses: mikepenz/action-junit-report@b14027d33d3a745ccc4d6a12f649e83110b5a373 # v5.4.0
uses: mikepenz/action-junit-report@cf701569b05ccdd861a76b8607a66d76f6fd4857 # v5.5.1
with:
report_paths: '**/test-results/**/*.xml'
check_name: Unit test report (${{ matrix.os }})
Expand All @@ -142,7 +142,7 @@ jobs:
if: github.repository == 'apter-tech/junit5-robolectric-extension' && github.event_name == 'pull_request'
steps:
- name: Download coverage report
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
with:
name: ${{ matrix.os }}-kover-report
- name: Comment branch coverage report to PR
Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[versions]
androidBuildTools = "34.0.0"
androidToolsCommon = "31.8.2"
androidToolsCommon = "31.9.1"
androidCompileSdk = "34"
androidCompileSdkJava11 = "33"
androidGradle = "8.8.2"
androidGradle = "8.9.1"
androidMinimumSdk = "19"
androidxTestExtJunit = "1.2.1"
buildConfig = "5.5.1"
buildConfig = "5.6.2"
detekt = "1.23.8"
dokka = "2.0.0"
gradlePluginPublish = "1.3.1"
guava = "33.4.0-jre"
guava = "33.4.6-jre"
junit4 = "4.13.2"
junit5 = "5.12.0"
junit5 = "5.12.1"
jvmToolchainMin = "11"
jvmToolchain = "17"
kotlin = "2.1.10"
Expand Down