Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbell committed Jun 17, 2024
1 parent 7011311 commit 199943f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
pull-requests: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
lfs: 'true'
fetch-depth: 0
- name: set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Kover dump
run: ./gradlew koverDump -q
- name: Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: ./build/reports/kover/reportMain.xml
flags: unittests
Expand Down
4 changes: 2 additions & 2 deletions listitem/src/main/java/net/nicbell/materiallists/ListItem.kt
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ open class ListItem @JvmOverloads constructor(

when {
params.isMaterialListLeadingContent -> {
barrierTextStart.referencedIds = barrierTextStart.referencedIds + child.id
barrierTextStart.referencedIds += child.id
}
params.isMaterialListTrailingContent -> {
barrierTextEnd.referencedIds = barrierTextEnd.referencedIds + child.id
barrierTextEnd.referencedIds += child.id
}
}
}
Expand Down

0 comments on commit 199943f

Please sign in to comment.